/* --- [ RESET BÁSICO Y VARIABLES ] --- */
:root {
    --color-primario: #0a4d90; /* Un azul corporativo y serio */
    --color-texto: #333333;
    --color-fondo: #ffffff;
    --color-fondo-secundario: #f9f9f9; /* Un crema/gris muy sutil */
    --fuente-titulos: 'Poppins', sans-serif;
    --fuente-cuerpo: 'Inter', sans-serif;
}

body {
    font-family: var(--fuente-cuerpo);
    color: var(--color-texto);
    background-color: var(--color-fondo);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fuente-titulos);
    font-weight: 700;
}

/* --- [ EL CONTENEDOR ACTUALIZADO ] --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- [ ESTILO GENERAL DE SECCIONES ] --- */
section {
    padding: 100px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primario);
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #083b6f; /* Un azul más oscuro al pasar el mouse */
    transform: translateY(-2px);
}

/* --- [ 1. NAVEGACIÓN ] --- */
header {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px; 
    width: auto;
    display: block; 
}

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

nav li {
    margin-left: 30px;
}

nav a {
    text-decoration: none;
    color: #555555;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav a:hover, .nav-cta:hover {
    color: var(--color-primario);
}

.nav-cta {
    font-weight: 700;
    color: var(--color-primario);
}

/* NUEVO: Botón de Hamburguesa (oculto en escritorio) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101; /* Asegura que esté sobre el menú */
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primario);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* --- [ 2. SECCIÓN HÉROE ] --- */
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=1740&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 150px 5%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin-top: 0;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 30px;
}

/* --- [ 3. SECCIÓN MÉTRICAS ] --- */
#metrics {
    background-color: var(--color-fondo);
}

#metrics .metrics-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap; 
}

.metric-item {
    flex-basis: 250px;
    margin: 20px;
}

.metric-item span {
    font-family: var(--fuente-titulos);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-primario);
    line-height: 1.1;
}

.metric-item h3 {
    font-size: 1.1rem;
    margin: 10px 0 5px 0;
    letter-spacing: 0.5px;
}

.metric-item p {
    font-size: 0.9rem;
    color: #777;
}

/* --- [ 4. SECCIÓN SOLUCIONES ] --- */
#solutions {
    background-color: var(--color-fondo-secundario);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 60px;
}

.solutions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 35px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.solution-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--color-primario);
}

/* --- [ 5. SECCIÓN PORTAFOLIO ] --- */
#portfolio {
    background-color: var(--color-fondo);
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden; 
    background-color: #ffffff;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-content h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.portfolio-content span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primario);
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* --- [ 6. SECCIÓN PROCESO ] --- */
#process {
    background-color: var(--color-fondo-secundario);
}

.process-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex-basis: 250px;
    flex-grow: 1;
    text-align: center;
    padding: 20px;
}

.process-step span {
    font-family: var(--fuente-titulos);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primario);
    opacity: 0.4;
}

.process-step h3 {
    margin: 10px 0;
    font-size: 1.3rem;
}

/* --- [ 7. CIERRE (CTA FINAL) ] --- */
#cta-final {
    background-color: var(--color-primario);
    color: #ffffff;
    text-align: center;
}

#cta-final h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}

#cta-final p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* --- [ 8. FOOTER ] --- */
footer {
    background-color: #222222;
    color: #aaaaaa;
    padding: 50px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px; 
    text-decoration: none;
}

.footer-logo-text {
    font-family: var(--fuente-titulos);
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer .logo img {
    height: 40px; 
    width: auto;
    display: block; 
    opacity: 0.8; 
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo:hover .logo img,
.footer-logo:hover .footer-logo-text {
    opacity: 1;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center; 
}


/* =================================================================
--- [ 9. SECCIÓN DE RESPONSIVIDAD (MÓVIL) ] ---
=================================================================
*/

/* Este @media query ahora controla TODOS los estilos móviles */
@media (max-width: 768px) {

    /* --- [ ESTILOS GENERALES MÓVILES ] --- */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }

    /* --- [ 1. NAVEGACIÓN MÓVIL (HAMBURGUESA) ] --- */
    
    /* Muestra el botón de hamburguesa */
    .menu-toggle {
        display: block;
    }

    /* Estilos de la 'X' cuando el menú está activo */
    .menu-toggle.is-active .hamburger-bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.is-active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.is-active .hamburger-bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Oculta la navegación de escritorio y la prepara para móvil */
    nav {
        position: absolute;
        top: 81px; /* Altura de tu header (padding 20px + logo 40px + padding 20px + border 1px) */
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-bottom: 1px solid #f0f0f0;
        
        /* Oculta el menú fuera de la pantalla */
        transform: translateX(-100%);
        transition: transform 0.3s ease-out;
    }
    
    /* Muestra el menú cuando está abierto */
    nav.is-open {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column; /* Apila los enlaces */
        align-items: center;
        padding: 20px 0;
    }

    nav li {
        margin: 15px 0; /* Espaciado vertical */
        margin-left: 0;
    }
    
    nav a {
        font-size: 1.1rem;
    }

    /* --- [ 2. SECCIÓN HÉROE MÓVIL ] --- */
    #hero {
        padding: 100px 5%;
        min-height: 60vh;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    
    #hero p {
        font-size: 1.1rem;
    }

    /* --- [ 3. MÉTRICAS y PROCESO MÓVIL ] --- */
    .metrics-container, 
    .process-container {
        flex-direction: column;
        align-items: center;
    }

    /* --- [ 4. SOLUCIONES MÓVIL ] --- */
    /* (Ya es responsive gracias a grid-template-columns: repeat(auto-fit...)) */

    /* --- [ 5. PORTAFOLIO MÓVIL ] --- */
    /* (Ya es responsive gracias a grid-template-columns: repeat(auto-fit...)) */
    
}


/* =================================================================
--- [ 10. ESTILOS DE PÁGINAS ESPECÍFICAS ] ---
=================================================================
*/

/* --- [ ESTILOS PARA LA PÁGINA DE SERVICIOS (servicios.html) ] --- */
.page-header {
    background-color: var(--color-fondo-secundario);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--color-primario);
    margin: 0 0 10px 0;
}

.page-header p {
    font-size: 1.2rem;
    color: #555;
    margin: 0;
}

#service-details {
    padding-top: 80px; 
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 50px; 
    margin-bottom: 80px; 
}

.service-detail-item.layout-inverted {
    flex-direction: row-reverse;
}

.service-content,
.service-image {
    flex: 1; 
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--color-primario);
    margin-top: 0;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.service-content li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primario);
    font-weight: 700;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* --- [ RESPONSIVIDAD (Página de Servicios) ] --- */
@media (max-width: 900px) {
    .service-detail-item,
    .service-detail-item.layout-inverted {
        flex-direction: column; 
    }

    .service-image {
        order: -1; 
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }
}

/* --- [ ESTILOS PARA LA PÁGINA DE NOSOTROS (nosotros.html) ] --- */
#about-story {
    background-color: var(--color-fondo);
    padding: 80px 0;
}

.story-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.story-content {
    flex: 1.2; 
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--color-primario);
    margin-top: 0;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8; 
}

#our-values {
    background-color: var(--color-fondo-secundario);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: -50px auto 50px auto; 
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-top: 4px solid var(--color-primario); 
    border-radius: 8px;
    padding: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--color-primario);
    margin-top: 0;
}

/* --- [ RESPONSIVIDAD (Página de Nosotros) ] --- */
@media (max-width: 900px) {
    .story-container {
        flex-direction: column;
    }

    .story-image {
        order: -1; 
        margin-bottom: 30px;
    }
}

/* --- [ ESTILOS PARA LA PÁGINA DE PORTAFOLIO (portafolio.html) ] --- */
#portfolio-grid {
    padding-top: 80px;
    background-color: var(--color-fondo-secundario); 
}

/* Reutilizamos .portfolio-container y .portfolio-item */
.portfolio-item {
    display: flex;
    flex-direction: column; 
}

.portfolio-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    padding-bottom: 30px; 
}

#portfolio .portfolio-content {
    /* Resetea el estilo de portafolio.html para que no afecte al index */
    padding: 25px;
    flex-grow: 0;
    padding-bottom: 25px;
}

#portfolio .portfolio-content p {
     /* Resetea el estilo de portafolio.html para que no afecte al index */
    flex-grow: 0;
    margin-bottom: 0;
}


/* --- [ ESTILOS PARA LA PÁGINA DE CONTACTO (contacto.html) ] --- */
#contact-section {
    padding-top: 80px;
    background-color: var(--color-fondo);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--color-primario);
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--fuente-cuerpo);
    font-size: 1rem;
    box-sizing: border-box; 
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primario);
    box-shadow: 0 0 0 2px rgba(10, 77, 144, 0.2);
}

.contact-form textarea {
    resize: vertical; 
}

.info-container {
    background-color: var(--color-fondo-secundario);
    padding: 35px;
    border-radius: 8px;
    height: fit-content; 
}

.info-container h3 {
    font-size: 1.8rem;
    color: var(--color-primario);
    margin-top: 0;
}

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

.info-item h4 {
    font-family: var(--fuente-cuerpo);
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

.info-item p a {
    color: var(--color-texto);
    text-decoration: none;
    font-weight: 600;
}

.info-item p a:hover {
    text-decoration: underline;
    color: var(--color-primario);
}

/* --- [ RESPONSIVIDAD (Página de Contacto) ] --- */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr; 
        gap: 50px;
    }
    
    .info-container {
        order: -1; 
    }
}