* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0f1419;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background-color: #1e2328;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

.logo img {
    height: 35px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff4655;
}

nav a.active {
    color: #ff4655;
}

main {
    margin-top: 70px;
}

.hero {
    background: linear-gradient(135deg, #1e2328 0%, #0f1419 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ff4655;
    margin-bottom: 20px;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px #ff4655; }
    to { text-shadow: 0 0 30px #ff4655, 0 0 40px #ff4655; }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #b8b8b8;
}

.btn-principal {
    background-color: #ff4655;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-principal:hover {
    transform: translateY(-3px);
    background-color: #e73c47;
}

.info {
    padding: 80px 50px;
    background-color: #1e2328;
}

.info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ff4655;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background-color: #0f1419;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.2);
}

.info-card h3 {
    color: #ff4655;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.destacados {
    padding: 80px 50px;
    background-color: #0f1419;
}

.destacados h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ff4655;
}

.agentes-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.agente-mini {
    text-align: center;
    transition: transform 0.3s;
}

.agente-mini:hover {
    transform: scale(1.1);
}

.agente-mini img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ff4655;
    margin-bottom: 10px;
}

.agente-mini h4 {
    color: #ffffff;
    font-size: 1.2rem;
}

.page-header {
    background-color: #1e2328;
    padding: 60px 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #ff4655;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #b8b8b8;
}

.agentes-completos {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.agente-card {
    background-color: #1e2328;
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    transition: transform 0.3s;
}

.agente-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 70, 85, 0.3);
}

.agente-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.agente-info {
    padding: 30px;
    flex: 1;
}

.agente-info h3 {
    font-size: 2rem;
    color: #ff4655;
    margin-bottom: 10px;
}

.rol {
    background-color: #ff4655;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.agente-info p {
    margin: 20px 0;
    color: #b8b8b8;
    line-height: 1.8;
}

.habilidades {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.habilidades span {
    background-color: #0f1419;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid #ff4655;
}

.contacto-contenido {
    padding: 80px 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-info {
    background-color: #1e2328;
    padding: 40px;
    border-radius: 15px;
    height: fit-content;
}

.contacto-info h3 {
    color: #ff4655;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    color: #ff4655;
    margin-bottom: 8px;
}

.info-item p {
    color: #b8b8b8;
}

.formulario-contacto {
    background-color: #1e2328;
    padding: 40px;
    border-radius: 15px;
}

.formulario-contacto h3 {
    color: #ff4655;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.campo {
    margin-bottom: 25px;
}

.campo label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: bold;
}

.campo input,
.campo select,
.campo textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #0f1419;
    color: #ffffff;
    font-size: 1rem;
}

.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    outline: none;
    border-color: #ff4655;
}

.btn-enviar {
    background-color: #ff4655;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-enviar:hover {
    background-color: #e73c47;
}

.redes-sociales {
    padding: 60px 50px;
    background-color: #1e2328;
    text-align: center;
}

.redes-sociales h3 {
    color: #ff4655;
    font-size: 2rem;
    margin-bottom: 30px;
}

.redes {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.redes a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #ff4655;
    border-radius: 25px;
    transition: all 0.3s;
}

.redes a:hover {
    background-color: #ff4655;
    color: #ffffff;
    transform: translateY(-3px);
}

footer {
    background-color: #0a0e13;
    padding: 30px;
    text-align: center;
    color: #b8b8b8;
    border-top: 1px solid #333;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    main {
        margin-top: 120px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .info,
    .destacados {
        padding: 50px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .agentes-preview {
        gap: 20px;
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .agentes-completos {
        padding: 50px 20px;
    }

    .agente-card {
        flex-direction: column;
    }

    .agente-card img {
        width: 100%;
        height: 250px;
    }

    .contacto-contenido {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }

    .redes {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .agente-mini img {
        width: 80px;
        height: 80px;
    }

    .info-card,
    .contacto-info,
    .formulario-contacto {
        padding: 25px;
    }
}

/* Estilos para el header */
.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #0f1923;
}

.logo img {
    height: 60px; /* o usa width: 120px si prefieres */
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active {
    color: #ff4655;
}
