/* =========================================
   ESTILOS: STAR CLEAN PRO (VERSIÓN FINAL PHP)
   ========================================= */

/* 1. Importación de Fuente */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* 2. Variables de Color Unificadas */
:root {
    /* Colores del Hero y Navbar */
    --primary-green: #67a32b; 
    --hover-green: #7abf34;
    --dark-teal: #102935; 
    --text-gray: #b0c0c7;
    
    /* Colores del resto de la web */
    --primary-lime: #82b440; 
    --dark-navy: #142129; 
    --darker-navy: #0d161c; 
    --text-white: #ffffff;
    --text-muted: #aab4bb;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
}

/* 3. Reset General y Clases Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--dark-teal); 
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* =========================================
   NAVBAR (MENÚ FIJO)
   ========================================= */
.navbar {
    position: fixed; /* Mantiene el menú arriba siempre */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

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

/* =========================================
   ESTILOS DEL LOGO DINÁMICO
   ========================================= */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.img-logo {
    height: 60px; /* Ajusta esta altura según el tamaño original de tus imágenes logo.png y logob.png */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Estado Normal (Menú Transparente/Oscuro) */
.logo-scrolled {
    display: none; /* Ocultamos el logo de color por defecto */
}

.logo-transparent {
    display: block; /* Mostramos el logo blanco (logob.png) */
}

/* Estado Scrolled (Menú Blanco) */
.navbar.scrolled .logo-transparent {
    display: none; /* Ocultamos el logo blanco */
}

.navbar.scrolled .logo-scrolled {
    display: block; /* Mostramos el logo a color (logo.png) */
}


.nav-links {
    display: flex;
    gap: 5px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a.active, .nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav-quote {
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap; /* ESTO ES CLAVE: Evita que el texto baje a una segunda línea */
}

.btn-nav-quote:hover {
    background: var(--hover-green);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

/* =========================================
   ESTADO NAVBAR AL HACER SCROLL (BLANCO)
   ========================================= */
.navbar.scrolled {
    background-color: #f8fafc;
    padding: 15px 0; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
}

.navbar.scrolled .nav-links a {
    color: #475569; 
}

.navbar.scrolled .nav-links a:hover {
    background: rgba(103, 163, 43, 0.1); 
    color: var(--primary-green);
}

/* Color del enlace activo cuando el menú es blanco */
.navbar.scrolled .nav-links a.active {
    background-color: #eef7ea; /* Fondo verde clarito */
    color: var(--primary-green);
    font-weight: 600;
}

/* Botón Contacto Celeste (Efecto de tu imagen) */
.navbar.scrolled .nav-links .link-contacto {
    background-color: #e6f4f6; 
    color: #156b7a; 
    font-weight: 600;
}

/* Icono hamburguesa se vuelve oscuro */
.navbar.scrolled .mobile-toggle {
    color: #0d161c;
}

/* =========================================
   RESPONSIVE Y MENÚ MÓVIL
   ========================================= */
@media (max-width: 1024px) {
    .mobile-toggle { 
        display: block; 
    }
    
    .nav-links { 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-teal);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        max-height: 400px; 
        padding: 10px 0 20px 0;
    }

    .navbar.scrolled .nav-links {
        background-color: #f8fafc;
    }

    .nav-links a {
        border-radius: 0;
        padding: 15px 20px;
        text-align: center;
        font-size: 1rem;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: url('../img/clearwomen.jpg') no-repeat center center / cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #102935 30%, rgba(16, 41, 53, 0.4) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 680px;
    padding-top: 50px; /* Compensa el espacio del navbar fijo */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.text-green {
    color: var(--primary-green);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(103, 163, 43, 0.4);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(103, 163, 43, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-features {
    display: flex;
    gap: 30px;
    opacity: 0.9;
}

.feature-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-item .icon {
    font-size: 1.3rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; letter-spacing: -1px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .hero-features { flex-direction: column; gap: 15px; }
    .btn-nav-quote { display: none; }
    .hero { text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-features { align-items: center; }
}

/* =========================================
   SECCIÓN SERVICIOS (CLON IDENTICO)
   ========================================= */

.services-section {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.badge-services {
    background-color: #e6f4f6; 
    color: #156b7a; 
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d161c;
    margin: 20px 0 15px;
    letter-spacing: -1px;
}

.services-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de tarjetas */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background-color: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    text-align: left;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    border-color: var(--primary-green);
}

/* Contenedor del Icono */
.icon-box {
    width: 65px;
    height: 65px;
    background-color: #eef5f9; 
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.icon-box i {
    font-size: 1.8rem;
    color: #156b7a; 
}

.service-card:hover .icon-box {
    background-color: rgba(103, 163, 43, 0.1); 
}

.service-card:hover .icon-box i {
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d161c;
    margin-bottom: 15px;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Enlace inferior */
.services-view-all {
    margin-top: 60px;
}

.services-view-all a {
    text-decoration: none;
    color: #156b7a;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.services-view-all a:hover {
    color: var(--primary-green);
    gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-title { font-size: 2.2rem; }
    .service-card { text-align: center; }
    .icon-box { margin: 0 auto 25px; }
}

/* =========================================
   SECCIÓN SOBRE NOSOTROS
   ========================================= */
.about {
    background-color: #f8fafc; 
    padding: 120px 0;
    color: #1a2b33;
}

.about-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image { flex: 1; position: relative; }

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-lime);
    color: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px rgba(130, 180, 64, 0.3);
    animation: floating 3s ease-in-out infinite;
}

.exp-number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; text-align: center; margin-top: 5px; }

.about-content { flex: 1; }

.about-badge {
    color: var(--primary-lime);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 800;
    color: #0d161c;
}

.about-content p { color: #64748b; margin-bottom: 30px; font-size: 1.1rem; }

.about-list { list-style: none; margin-bottom: 40px; }
.about-list li { display: flex; gap: 20px; margin-bottom: 25px; }

.check {
    width: 25px;
    height: 25px;
    background: rgba(130, 180, 64, 0.1);
    color: var(--primary-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    font-weight: bold;
}

.about-list strong { display: block; color: #1e293b; margin-bottom: 3px; }
.about-list p { font-size: 0.95rem; margin-bottom: 0; }

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .about-container { flex-direction: column; text-align: center; gap: 60px; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .experience-badge { right: 10px; padding: 20px; }
    .about-list li { text-align: left; }
    .about-content h2 { font-size: 2.2rem; }
}

/* =========================================
   SECCIÓN CALL TO ACTION (CTA)
   ========================================= */
.cta-section {
    /* Degradado Teal idéntico a la imagen */
    background: linear-gradient(135deg, #102935 0%, #163d4a 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px; 
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: -1px;
}

/* Color verde resaltado */
.cta-section .text-highlight {
    color: var(--primary-green);
}

.cta-section p {
    font-size: 1.1rem;
    color: #b0c0c7; /* Gris azulado suave */
    max-width: 550px;
    margin: 0 auto 45px auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Resplandor (Glow) del botón principal */
.cta-btn-primary {
    box-shadow: 0 8px 30px rgba(103, 163, 43, 0.4);
}

.cta-btn-primary:hover {
    box-shadow: 0 12px 40px rgba(103, 163, 43, 0.6);
    transform: translateY(-3px);
}

/* Ajuste del tamaño del icono del teléfono */
.cta-buttons .btn-secondary i {
    font-size: 1.2rem;
}

/* Diseño Responsivo (Móviles) */
@media (max-width: 768px) {
    .cta-section h2 { 
        font-size: 2.5rem; 
    }
    .cta-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    .cta-buttons a { 
        width: 100%; 
        justify-content: center; 
    }
}

/* =========================================
   FOOTER (PIE DE PÁGINA)
   ========================================= */
.footer {
    background-color: #0d202b; 
    color: var(--text-white);
    padding: 80px 20px 30px;
}

.footer-container { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }

.footer-img-logo {
    max-width: 200px; /* Ajusta este valor según lo que necesites */
    height: auto;     /* Mantiene las proporciones de la imagen */
    display: block;
    width: 50%;
    
}

.footer-icon-box {
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.4rem;
}

.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-text .brand { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.5px; }
.footer-logo-text .sub-brand { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 2px; margin-top: 3px; }

.footer-desc { color: #aab4bb; font-size: 0.9rem; line-height: 1.8; max-width: 380px; }

.footer-col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 25px; color: var(--text-white); }
.links-col ul { list-style: none; }
.links-col li { margin-bottom: 15px; }
.links-col a { text-decoration: none; color: #aab4bb; font-size: 0.9rem; transition: var(--transition); }
.links-col a:hover { color: var(--primary-lime); padding-left: 5px; }

.contact-col p { color: #aab4bb; font-size: 0.9rem; margin-bottom: 15px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p { color: #768a96; font-size: 0.8rem; }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-logo { justify-content: center; }
    .footer-desc { margin: 0 auto; }
}


/* =========================================
   HERO INTERNO: SOBRE NOSOTROS (about.php)
   ========================================= */

.about-hero {
    position: relative;
    /* Le damos bastante padding arriba para que no lo tape el menú fijo (navbar) */
    padding: 180px 0 120px 0; 
    min-height: 55vh; /* Altura mínima para que se vea imponente */
    display: flex;
    align-items: center;
    /* NOTA: Cambia 'about-bg.jpg' por la imagen de la gente en la oficina que quieras usar */
    background: url('../img/about-bg.jpg') no-repeat center center / cover;
}

/* El degradado exacto de tu imagen (De teal a azul marino) */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(34, 102, 115, 0.92) 0%, rgba(27, 56, 81, 0.92) 100%);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    max-width: 650px; /* Limitamos el ancho para que el texto baje igual que en la foto */
}

/* La etiqueta (badge) de QUIÉNES SOMOS */
.badge-transparent {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1); /* Fondo semi-transparente */
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(5px); /* Efecto cristal */
}

.about-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Reutilizamos el verde de tu marca */
.about-hero-content .text-green {
    color: var(--primary-lime); /* Si prefieres el verde más oscuro usa --primary-green */
}

.about-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85); /* Blanco ligeramente apagado para no cansar la vista */
    line-height: 1.6;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .about-hero {
        padding: 150px 0 80px 0;
        text-align: center;
    }
    .about-hero-content {
        margin: 0 auto;
    }
    .about-hero-content h2 {
        font-size: 2.8rem;
    }
}


/* =========================================
   SECCIÓN MISIÓN Y VISIÓN (about.php)
   ========================================= */

.mission-vision-section {
    background-color: #f8fafc; /* Un gris muuuy clarito para que las tarjetas blancas resalten */
    padding: 100px 0;
}

.mv-grid {
    display: grid;
    /* Usamos un ancho máximo para que las dos tarjetas queden centradas y no se estiren al infinito */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px; 
    margin: 0 auto;
}

.mv-card {
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 24px; /* Bordes bien redondeados como en la imagen */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); /* Sombra muy suave */
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Contenedores de los Iconos */
.mv-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mv-icon i {
    font-size: 2rem;
    color: #ffffff; /* Iconos blancos */
}

/* Colores específicos de cada cuadro */
.mv-icon.bg-navy {
    background-color: #1a3644; /* Azul oscuro de la misión */
}

.mv-icon.bg-green {
    background-color: var(--primary-green); /* Verde de la visión */
}

/* Textos */
.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 15px;
}

.mv-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    .mv-card {
        padding: 40px 30px;
    }
}

/* =========================================
   SECCIÓN VALORES (about.php)
   ========================================= */

.values-section {
    background-color: #ffffff; /* Fondo blanco para contrastar con el gris de Misión/Visión */
    padding: 100px 0;
    text-align: center;
}

.values-header {
    margin-bottom: 60px;
}

.badge-values {
    display: inline-block;
    background-color: #e6f4f6; /* Celeste muy suave */
    color: #156b7a; /* Texto verde azulado */
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.values-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0d161c;
    letter-spacing: -1px;
}

/* Grid de Valores (3 Columnas) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contenedor del icono estilo squircle (cuadro redondeado) */
.value-icon {
    width: 75px;
    height: 75px;
    background-color: #e6f4f6; 
    border-radius: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.value-icon i {
    font-size: 2.2rem;
    color: #156b7a; 
    transition: var(--transition);
}

/* Efecto hover elegante */
.value-item:hover .value-icon {
    background-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(103, 163, 43, 0.3);
}

.value-item:hover .value-icon i {
    color: #ffffff;
}

/* Textos */
.value-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 15px;
}

.value-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 320px;
}

/* Responsive */
@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }
    .values-header h2 {
        font-size: 2.2rem;
    }
}

/* =========================================
   HERO INTERNO: SERVICIOS (servicios.php)
   ========================================= */

.services-hero {
    position: relative;
    padding: 180px 0 120px 0; /* Espacio superior para el menú fijo */
    min-height: 45vh; /* Un poco más corto que el hero de inicio, ideal para páginas internas */
    display: flex;
    align-items: center;
    /* Usando la imagen que solicitaste */
    background: url('../img/services.jpg') no-repeat center center / cover;
}

/* Degradado exacto de la imagen (Teal a Azul Oscuro) */
.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Un overlay con alta opacidad (95%) para dar ese look corporativo y limpio */
    background: linear-gradient(90deg, rgba(30, 95, 108, 0.95) 0%, rgba(38, 62, 90, 0.95) 100%);
    z-index: 1;
}

.services-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-hero-content {
    max-width: 650px;
}

.services-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.services-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .services-hero {
        padding: 150px 0 80px 0;
        text-align: center;
    }
    .services-hero-content {
        margin: 0 auto;
    }
    .services-hero-content h2 {
        font-size: 2.8rem;
    }
}


/* =========================================
   SECCIÓN SERVICIOS BÁSICOS (servicios.php)
   ========================================= */

.core-services-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.core-services-header {
    margin-bottom: 50px;
    text-align: left; /* Título alineado a la izquierda según la imagen */
}

/* Reutilizamos el estilo del badge pero aseguramos su margen */
.core-services-header .badge-services {
    display: inline-block;
    margin-bottom: 20px;
}

.core-services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.core-services-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Grid de 3 columnas */
.core-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px; /* Espacio entre las tarjetas */
}

/* Estilo de la tarjeta horizontal */
.core-service-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    background-color: #ffffff;
    border: 1px solid #f1f5f9; /* Borde gris muy claro */
    border-radius: 16px; /* Bordes redondeados estilo píldora/caja suave */
    transition: var(--transition);
}

.core-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: rgba(103, 163, 43, 0.3); /* Borde verdoso sutil al pasar el mouse */
}

/* Contenedor del icono pequeño */
.core-icon-box {
    width: 50px;
    height: 50px;
    background-color: #e6f4f6; /* Celeste claro */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.core-icon-box i {
    font-size: 1.4rem;
    color: #156b7a; /* Color Teal oscuro */
    transition: var(--transition);
}

/* Efecto hover en el icono */
.core-service-card:hover .core-icon-box {
    background-color: var(--primary-green);
}

.core-service-card:hover .core-icon-box i {
    color: #ffffff;
}

/* Texto de la tarjeta */
.core-service-card span {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 500;
}

/* Ajustes Responsive para móviles */
@media (max-width: 768px) {
    .core-services-section {
        padding: 60px 0;
    }
    .core-services-header h2 {
        font-size: 2rem;
    }
    .core-services-grid {
        grid-template-columns: 1fr; /* Una sola columna en teléfonos */
    }
}

/* =========================================
   SECCIÓN SERVICIOS ADICIONALES (servicios.php)
   ========================================= */

.extra-services-section {
    background-color: #f8fafc; /* Gris muy claro para alternar con el blanco anterior */
    padding: 100px 0;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px; /* Bastante espacio entre las dos columnas, como en la imagen */
    max-width: 1000px; /* Centra el contenido y evita que se separen demasiado */
    margin: 0 auto;
}

.extra-column {
    display: flex;
    flex-direction: column;
}

/* Badges específicos para esta sección */
.badge-green {
    display: inline-block;
    background-color: rgba(103, 163, 43, 0.12); /* Fondo verde muy claro */
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start; /* Evita que el badge ocupe todo el ancho */
}

.badge-teal {
    display: inline-block;
    background-color: #e6f4f6; /* Fondo teal muy claro */
    color: #156b7a;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
}

.extra-column h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

/* Estilos de las listas */
.extra-list {
    list-style: none; /* Quitamos los bullets por defecto del navegador */
    padding: 0;
    margin: 0;
}

.extra-list li {
    position: relative;
    padding-left: 25px; /* Dejamos espacio para nuestro bullet personalizado */
    margin-bottom: 18px;
    color: #475569; /* Gris oscuro para lectura cómoda */
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Bullet Personalizado Verde */
.list-green li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; /* Ajuste para centrar el puntito con la primera línea de texto */
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-green);
}

/* Bullet Personalizado Teal */
.list-teal li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #156b7a;
}

/* Ajustes Responsive */
@media (max-width: 768px) {
    .extra-services-section {
        padding: 60px 0;
    }
    .extra-services-grid {
        gap: 50px;
        grid-template-columns: 1fr; /* Pasa a una sola columna en móviles */
    }
    .extra-column h2 {
        font-size: 1.8rem;
    }
}

/* =========================================
   SECCIÓN SERVICIOS ESTACIONALES (servicios.php)
   ========================================= */

.seasonal-services-section {
    background-color: #ffffff; /* Fondo blanco para contrastar con el gris anterior */
    padding: 100px 0;
}

.seasonal-header {
    margin-bottom: 50px;
    text-align: left;
}

.seasonal-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d161c;
    margin-top: 15px; /* Separación con el badge */
    letter-spacing: -1px;
}

/* Grid de 3 columnas */
.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Base de las tarjetas estacionales */
.seasonal-card {
    padding: 40px 35px;
    border-radius: 24px; /* Bordes suaves estilo app */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.seasonal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

/* Colores Pastel Específicos para cada estación */
.card-summer {
    background-color: #fffdf5; /* Crema/Amarillo muy suave */
}

.card-autumn {
    background-color: #fff6f5; /* Durazno/Rosado muy suave */
}

.card-winter {
    background-color: #f2fbff; /* Celeste muy suave */
}

/* Iconos */
.seasonal-icon {
    margin-bottom: 25px;
}

.seasonal-icon i {
    font-size: 2.5rem;
    color: #156b7a; /* Tono teal oscuro igual al diseño */
}

/* Textos */
.seasonal-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 10px;
}

.seasonal-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .seasonal-services-section {
        padding: 60px 0;
    }
    .seasonal-header h2 {
        font-size: 2rem;
    }
}

/* =========================================
   HERO INTERNO: SECTORES (sectores.php)
   ========================================= */

.sectors-hero {
    position: relative;
    padding: 180px 0 120px 0; /* Espacio para el navbar fijo */
    min-height: 45vh; 
    display: flex;
    align-items: center;
    /* Usando la imagen que indicaste */
    background: url('../img/field-bg.jpg') no-repeat center center / cover;
}

/* Degradado corporativo (Teal a Azul Marino) */
.sectors-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Un overlay oscuro (92% de opacidad) para máxima legibilidad */
    background: linear-gradient(90deg, rgba(34, 102, 115, 0.92) 0%, rgba(27, 56, 81, 0.92) 100%);
    z-index: 1;
}

.sectors-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.sectors-hero-content {
    max-width: 650px;
}

.sectors-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.sectors-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .sectors-hero {
        padding: 150px 0 80px 0;
        text-align: center;
    }
    .sectors-hero-content {
        margin: 0 auto;
    }
    .sectors-hero-content h2 {
        font-size: 2.8rem;
    }
}

/* =========================================
   SECCIÓN GRID DE SECTORES (sectores.php)
   ========================================= */

.sectors-grid-section {
    background-color: #ffffff;
    padding: 100px 0;
}

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

.sector-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden; /* Esto es clave para que la imagen respete los bordes redondos de la tarjeta */
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(103, 163, 43, 0.3);
}

/* Contenedor de la Imagen */
.sector-image {
    position: relative;
    height: 240px; /* Altura fija para que todas las tarjetas midan igual */
    width: 100%;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Evita que las imágenes se deformen */
}

/* Icono Flotante sobre la imagen */
.sector-icon-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 12px; /* Cuadro suavizado */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.sector-icon-badge i {
    font-size: 1.5rem;
    color: #156b7a; /* Color Teal corporativo */
}

/* Contenido de texto de la tarjeta */
.sector-content {
    padding: 35px 30px;
}

.sector-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-lime); /* Verde claro característico */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sector-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 15px;
}

.sector-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .sectors-grid-section {
        padding: 60px 0;
    }
}

/* =========================================
   HERO INTERNO: CONTACTO (contacto.php)
   ========================================= */

.contact-hero {
    position: relative;
    padding: 180px 0 120px 0; /* Espacio superior para el menú fijo */
    min-height: 45vh; 
    display: flex;
    align-items: center;
    /* Usando la imagen que me indicaste */
    background: url('../img/contacto-bg.jpg') no-repeat center center / cover;
}

/* Degradado corporativo (Teal a Azul Marino) */
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Mismo overlay oscuro para mantener la coherencia visual en toda la web */
    background: linear-gradient(90deg, rgba(34, 102, 115, 0.92) 0%, rgba(27, 56, 81, 0.92) 100%);
    z-index: 1;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero-content {
    max-width: 650px;
}

.contact-hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 150px 0 80px 0;
        text-align: center;
    }
    .contact-hero-content {
        margin: 0 auto;
    }
    .contact-hero-content h2 {
        font-size: 2.8rem;
    }
}

/* =========================================
   SECCIÓN FORMULARIO DE CONTACTO (contacto.php)
   ========================================= */

.contact-page-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    /* La columna del formulario (derecha) toma un poco más de espacio (1.2fr) */
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- COLUMNA IZQUIERDA (Info) --- */
.contact-info-col h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-intro {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: #e6f4f6; /* Celeste corporativo */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.5rem;
    color: #156b7a; /* Teal oscuro */
}

.method-text {
    display: flex;
    flex-direction: column;
}

.method-text strong {
    font-size: 0.95rem;
    color: #0d161c;
    margin-bottom: 3px;
}

.method-text span {
    font-size: 0.95rem;
    color: #475569;
}

/* Tarjeta "¿Por qué elegirnos?" */
.why-choose-card {
    background-color: #f8fafc; /* Gris muy clarito */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.why-choose-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d161c;
    margin-bottom: 15px;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.why-list li i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* --- COLUMNA DERECHA (Formulario) --- */
.form-card {
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05); /* Sombra elegante idéntica a la imagen */
    border: 1px solid rgba(0,0,0,0.03);
}

.form-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d161c;
    margin-bottom: 8px;
}

.form-note {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

/* Inputs y estructura del formulario */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    color: #1e293b;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(103, 163, 43, 0.1); /* Efecto glow verde al enfocar */
}

.input-group textarea {
    resize: vertical;
}

/* Selectores visuales (Dropdown) */
.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

/* Botón de Enviar (Azul Teal Profundo) */
.btn-submit {
    width: 100%;
    background-color: #124c5b; /* Teal oscuro de la imagen */
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #0d3844;
    transform: translateY(-2px);
}

/* Diseño Responsivo (Móviles) */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Apila información arriba y formulario abajo */
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr; /* Inputs a una sola columna en teléfonos */
    }
    .form-card {
        padding: 30px 20px;
    }
}