/* --- Variables y Reset --- */
:root {
    --primary-blue: #14213d; 
    --accent-red: #d62828;   
    --light-gray: #f4f4f4;
    --text-dark: #2c3e50; /* Un gris oscuro más azulado, más elegante */
    --white: #ffffff;
}

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

body {
    /* CAMBIO DE FUENTE DE CUERPO */
    font-family: 'Open Sans', sans-serif; 
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px; /* Tamaño base legible */
}

/* AGREGAR ESTO PARA QUE LOS TÍTULOS CAMBIEN */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Negrita fuerte */
    color: var(--primary-blue);
    letter-spacing: -0.5px; /* Un toque moderno, letras un poquito más juntas */
}

/* Ajuste específico para el logo si usabas texto (si usas imagen no afecta) */
.logo {
    font-family: 'Montserrat', sans-serif;
}

/* --- Navegación --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- ESTILOS PARA EL LOGO IMAGEN --- */
.logo-img {
    height: 90px; /* Antes estaba en 60px o 70px. 45px es un tamaño ideal. */
    width: auto;
    display: block;
}

/* Ajuste para celulares (para que no ocupe toda la barra) */
@media (max-width: 768px) {
    .logo-img {
        height: 75px; /* En celular lo hacemos un poquito más chico */
    }
}
.ml-text {
    font-size: 2rem;
    font-weight: bold;
}

.sub-logo {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    display: block;
    color: var(--text-dark);
    line-height: 0.8;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.btn-contact {
    background-color: var(--primary-blue);
    color: white !important;
    padding: 8px 16px;
    border-radius: 5px;
}

.btn-contact:hover {
    background-color: var(--accent-red);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-blue);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(20, 33, 61, 0.8), rgba(20, 33, 61, 0.8)), url('https://images.unsplash.com/photo-1494412574643-35d324688188?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Imagen genérica de puerto/logística */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 100px;
}
.text-hero{
    color: wheat;
    padding: 10px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-primary:hover { background-color: #b01f1f; }
.btn-secondary:hover { background-color: white; color: var(--primary-blue); }

/* --- General Sections --- */
.section-container {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 10px auto;
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 5px solid var(--primary-blue);
    text-align: center;
}

.team-card h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--accent-red);
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
    border-radius: 8px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* --- Contact Section --- */
.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

.info-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.whatsapp-link {
    display: inline-block;
    margin-top: 10px;
    color: #25D366;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
}

.email {
    margin-top: 5px;
    color: #666;
}

.lang-tag {
    font-size: 0.85rem;
    background: #e0e0e0;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 5px;
}

footer {
    background-color: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
/* --- SECCIÓN BENEFICIO EXCLUSIVO (PREMIUM) --- */
.special-feature {
    padding: 60px 5%;
    background-color: #ffffff; /* Fondo blanco para que la tarjeta resalte */
    display: flex;
    justify-content: center;
}

.feature-card {
    background: linear-gradient(135deg, #14213d 0%, #1e3a8a 100%); /* Degradado Azul Corporativo */
    color: white;
    width: 100%;
    max-width: 900px;
    border-radius: 15px;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 30px rgba(20, 33, 61, 0.25); /* Sombra elegante */
    overflow: hidden;
}

/* Decoración de fondo (Círculo sutil) */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #d62828; /* Rojo de la marca */
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.feature-flex {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative; /* Para estar encima del círculo decorativo */
    z-index: 1;
}

.feature-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Evita que el icono se aplaste */
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.feature-icon-box i {
    font-size: 2.5rem;
    color: #ffffff;
}

.feature-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0; /* Blanco grisáceo para leer mejor */
    margin: 0;
}

/* Responsivo para celulares */
@media (max-width: 768px) {
    .feature-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card {
        padding: 30px 20px;
    }

    .feature-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
}
/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 16px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
/* =========================================
   MODO "SENIOR FRIENDLY" (ACCESIBILIDAD MÓVIL)
   Diseñado para mayores de 50 años
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. AUMENTO GENERAL DE TEXTO */
    html, body {
        font-size: 18px !important; /* Letra base grande */
        line-height: 1.7 !important; /* Más espacio entre renglones para no cansar la vista */
    }

    p {
        color: #222; /* Negro casi puro para máximo contraste (mejor que gris) */
    }

    /* 2. TÍTULOS MÁS IMPACTANTES Y LEGIBLES */
    .hero h1 p{
        font-size: 2.2rem !important; /* Título de portada grande */
        line-height: 1.3;
        margin-bottom: 20px;
        
    }

    h2 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 1.6rem !important;
    }

    /* 3. BOTONES "GRUESOS" (FÁCILES DE TOCAR) */
    .btn {
        display: block;       /* El botón ocupa todo el ancho */
        width: 100%;
        padding: 18px 20px;   /* Mucho relleno para aumentar el área de toque */
        font-size: 1.2rem;    /* Texto del botón grande */
        margin: 10px 0;       /* Separación entre botones */
        text-align: center;
    }

    /* 4. MENÚ DE NAVEGACIÓN GIGANTE */
    .nav-links {
        padding-top: 50px; /* Bajarlo un poco */
    }

    .nav-links li {
        margin: 30px 0; /* Mucha separación entre opciones */
    }

    .nav-links a {
        font-size: 1.5rem; /* Texto del menú muy grande */
        font-weight: bold;
    }

    /* 5. SECCIÓN DE CONTACTO (CRÍTICA) */
    .info-box h4 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    /* Transformamos el link de WhatsApp en un BOTÓN VERDE GRANDE */
    .whatsapp-link {
        display: block;
        background-color: #25D366; /* Verde WhatsApp */
        color: white !important;
        text-align: center;
        padding: 15px;
        border-radius: 10px;
        font-size: 1.3rem; /* Número grande */
        margin-top: 15px;
        margin-bottom: 15px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        text-decoration: none;
    }

    .whatsapp-link i {
        margin-right: 10px;
        font-size: 1.5rem;
    }

    .email {
        font-size: 1.2rem;
        font-weight: 500;
        margin-top: 10px;
        display: block;
    }

    /* 6. TARJETA DE INTÉRPRETE (BENEFICIO) */
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-text p {
        font-size: 1.2rem; /* Letra un poco más grande en la tarjeta azul */
    }
    
    .feature-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }
}