/* ==========================================================================
   1. CONFIGURACIÓN BASE Y ESTILOS COMUNES
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
} 

body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6; 
    color: #333; 
} 

section { 
    padding: 1.5rem 2rem 5rem 2rem !important; 
    scroll-margin-top: 110px !important; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 3rem; 
} 

.section-title h2 { 
    font-size: 2.5rem; 
    color: #2b3a2b; 
    margin-bottom: 1rem; 
} 

.section-title p { 
    color: #555; 
    max-width: 600px; 
    margin: 0 auto; 
} 

/* Botón verde salvia estándar */ 
.cta-button { 
    display: inline-block; 
    background-color: #5a785a; 
    color: white; 
    padding: 14px 28px; 
    text-decoration: none; 
    font-weight: bold; 
    border-radius: 30px; 
    box-shadow: 0 4px 15px rgba(90, 120, 90, 0.2); 
    transition: transform 0.3s ease, background-color 0.3s ease; 
} 

.cta-button:hover { 
    background-color: #465e46; 
    transform: translateY(-2px); 
}

/* ==========================================================================
   2. BARRA DE NAVEGACIÓN (HEADER)
   ========================================================================== */
header { 
    background-color: #f7f5f0 !important; 
    width: 100%; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 1000; 
} 

nav { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    display: flex; 
    justify-content: space-between; /* Deja el logo a la izquierda y el bloque de enlaces a la derecha */
    align-items: center; 
    height: 110px; 
    width: 100%; /* Asegura que ocupe todo el ancho disponible */
} 

.logo { 
    display: flex; 
    align-items: center; 
    height: 100%; 
    max-height: 110px; 
    overflow: hidden; 
} 

.logo img { 
    max-height: 95px; 
    width: auto; 
    display: block; 
    object-fit: contain; 
} 

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 1.5rem; 
    margin-left: auto; /* Truco de flexbox para empujar la lista al extremo derecho */
}

.nav-links a { 
    color: #3b533b; 
    text-decoration: none; 
    font-weight: 600; 
    transition: color 0.3s ease; 
} 

.nav-links a:hover { 
    color: #556b2f; 
} 

.menu-toggle { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    gap: 5px; 
} 

.menu-toggle span { 
    width: 25px; 
    height: 3px; 
    background-color: #5a785a; 
    border-radius: 3px; 
} 

/* ==========================================================================
   3. SECCIÓN HERO (INICIO)
   ========================================================================== */
.hero { 
    position: relative; 
    width: 100%; 
    height: 100vh; 
    min-height: 550px; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    overflow: hidden; 
    background-color: #111111; 
} 

.hero-carousel { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
} 

.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.35) !important; 
    z-index: 2; 
} 

.hero-content-left { 
    position: relative; 
    z-index: 3; 
    max-width: 680px; 
    padding: 3rem !important; 
    text-align: left; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    margin-top: 110px; 
    margin-left: 5%; 
    background: rgba(0, 0, 0, 0.3) !important; 
    backdrop-filter: blur(12px) !important; 
    -webkit-backdrop-filter: blur(12px) !important; 
    border-radius: 20px !important; 
    border: 1px solid rgba(255, 255, 255, 0.1) !important; 
} 

.hero-content-left h1 { 
    color: #ffffff; 
    font-size: 3rem; 
    margin-bottom: 20px; 
    line-height: 1.2; 
    font-weight: 700; 
} 

.hero-content-left h1 span { 
    color: #ffffff !important; 
} 

.hero-content-left p { 
    color: #e0e0e0; 
    font-size: 1.2rem; 
    margin-bottom: 30px; 
} 

/* Botón de cristal exclusivo del Hero */ 
.hero-content-left .cta-button { 
    display: inline-block; 
    background-color: rgba(255, 255, 255, 0.15) !important; 
    color: #ffffff !important; 
    padding: 14px 32px !important; 
    text-decoration: none; 
    font-weight: 600; 
    border-radius: 30px; 
    border: 1px solid rgba(255, 255, 255, 0.3) !important; 
    backdrop-filter: blur(5px) !important; 
    -webkit-backdrop-filter: blur(5px) !important; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important; 
    transition: all 0.3s ease !important; 
} 

.hero-content-left .cta-button:hover { 
    background-color: rgba(255, 255, 255, 0.3) !important; 
    border-color: rgba(255, 255, 255, 0.6) !important; 
    transform: translateY(-2px) !important; 
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.1) !important; 
}

/* ==========================================================================
   4. SECCIÓN SECTORES
   ========================================================================== */
.sectores { 
    background: #f7f5f0; 
} 

.sectores-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 1.5rem; 
    max-width: 1200px; 
    margin: 0 auto; 
} 

.sector-card { 
    background: white; 
    padding: 2rem; 
    border-radius: 15px; 
    text-align: center; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.04); 
    transition: all 0.3s; 
} 

.sector-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 40px rgba(90, 120, 90, 0.12); 
} 

.sector-icon { 
    margin-bottom: 1.2rem !important; 
    display: flex !important; 
    justify-content: center !important; 
    align-items: center !important; 
    height: 40px !important; 
} 

.sector-icon svg { 
    width: 34px !important; 
    height: 34px !important; 
    stroke: #5a785a !important; 
} 

.sector-card h3 { 
    font-size: 1rem; 
    color: #2b3a2b; 
    font-weight: 600; 
} 

/* ==========================================================================
   5. SECCIÓN DEMO
   ========================================================================== */
#demo.demo {
    padding: 5rem 2rem 5.5rem 2rem !important; /* Mantiene la franja verde con su tamaño compacto ideal */
    background: linear-gradient(135deg, #2b3a2b 0%, #3b533b 100%); 
    color: white; 
    position: relative;
    z-index: 5;
}

.demo .section-title h2 { 
    color: white; 
} 

.demo .section-title p { 
    color: rgba(255,255,255,0.8); 
} 

.video-row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 20px; 
    justify-content: center; 
    max-width: 1000px; 
    margin: 0 auto; 
    padding: 20px; 
} 

.video-container { 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.4); 
    aspect-ratio: 16 / 9; 
    background-color: #000000 !important; 
    background-size: cover !important; 
    background-position: center !important; 
    background-repeat: no-repeat !important; 
}

.video-container iframe { 
    width: 100%; 
    height: 100%; 
    border: none; 
}

/* ==========================================================================
   6. SECCIÓN BENEFICIOS
   ========================================================================== */
#beneficios {
    background-color: #f7f5f0 !important;
    padding-top: 6rem !important;    /* EL CAMBIO: Usamos padding-top en lugar de margin-top para rellenar ese hueco con crema */
    padding-bottom: 2rem !important;  /* Mantiene las tarjetas compactas por abajo */
    margin-top: 0px !important;       /* Eliminamos el margen para que no se descubra la base blanca de la web */
    position: relative;
    z-index: 1;
}

.beneficios-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem 2rem !important; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.beneficio-card { 
    text-align: center; 
    padding: 0.5rem 1rem !important; 
} 

.beneficio-icon { 
    width: 140px !important; 
    height: 140px !important; 
    border-radius: 50% !important; 
    overflow: hidden !important; 
    margin: 0 auto 1rem !important; 
    border: 3px solid #5a785a !important; 
    box-shadow: 0 6px 20px rgba(90, 120, 90, 0.18) !important; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.beneficio-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    display: block !important;
}

.beneficio-card h3 { 
    margin-top: 0.2rem !important;
    margin-bottom: 0.3rem !important; 
    color: #2b3a2b; 
}

.beneficio-card p { 
    color: #555; 
}

/* ==========================================================================
   7. SECCIÓN PASOS
   ========================================================================== */
.pasos { 
    background: #ffffff !important; 
    padding: 5rem 2rem; 
} 

.pasos-grid { 
    display: flex !important; 
    flex-wrap: wrap !important; 
    gap: 2.5rem !important; 
    max-width: 1200px !important; 
    margin: 0 auto !important; 
    justify-content: center !important; 
} 

.pasos-grid .paso-card { 
    flex: 1 1 300px !important; 
    max-width: 360px !important; 
    display: flex !important; 
    gap: 1.5rem !important; 
    align-items: flex-start !important; 
    padding: 2rem !important; 
    background: #f2f7f2 !important; 
    border-radius: 15px !important; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.03) !important; 
    transition: transform 0.3s ease !important; 
} 

.pasos-grid .paso-card:hover { 
    transform: translateY(-5px) !important; 
} 

.paso-numero { 
    font-size: 4rem !important; 
    font-weight: 700 !important; 
    color: #709370 !important; 
    line-height: 1 !important; 
} 

.paso-contenido h3 { 
    font-size: 1.3rem !important; 
    color: #2b3a2b !important; 
    margin-bottom: 0.5rem !important; 
    font-weight: 600 !important; 
    text-align: left !important; 
} 

.paso-contenido p { 
    color: #555 !important; 
    font-size: 0.95rem !important; 
    line-height: 1.6 !important; 
    text-align: left !important; 
}
/* ==========================================================================
   8. SECCIÓN TARIFAS
   ========================================================================== */
.tarifas { 
    background: #f7f5f0 !important; 
    padding: 5rem 2rem; 
} 

.tarifas-row { 
    display: flex !important; 
    flex-wrap: wrap !important; 
    gap: 1.5rem !important; 
    max-width: 1200px !important; 
    margin: 0 auto !important; 
    justify-content: center !important; 
} 

.tarifa-card { 
    flex: 1 1 250px !important; 
    max-width: 285px;
    background: #ffffff !important; 
    padding: 2.5rem 1.5rem !important; 
    border-radius: 15px !important; 
    text-align: center !important; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important; 
    position: relative !important; 
    height: fit-content !important; 
    display: block !important; 
    transition: transform 0.3s ease !important; 
} 

.tarifa-card:hover { 
    transform: translateY(-5px) !important; 
} 

.tarifa-card.destacado { 
    background: #ffffff !important; 
    border: 2px solid #5a785a !important; 
    transform: scale(1.03) !important; 
    box-shadow: 0 10px 30px rgba(90, 120, 90, 0.1) !important; 
} 

.tarifa-card.destacado:hover { 
    transform: translateY(-5px) scale(1.03) !important; 
} 

.tarifa-tag { 
    position: absolute !important; 
    top: 0 !important; 
    transform: translate(-50%, -50%) !important; 
    left: 50% !important; 
    background: #5a785a !important; 
    color: white !important; 
    padding: 6px 16px !important; 
    font-size: 0.85rem !important; 
    font-weight: bold !important; 
    border-radius: 20px !important; 
    z-index: 10 !important; 
}

.tarifa-card h3 { 
    color: #2b3a2b !important; 
    font-size: 1.5rem !important; 
    margin-bottom: 1rem !important; 
} 

.precio { 
    font-size: 1.6rem !important; 
    font-weight: 700 !important; 
    color: #5a785a !important; 
    margin-top: 0.5rem !important; 
    margin-bottom: 1.5rem !important; 
    line-height: 1.1 !important; 
} 

.precio span { 
    font-size: 0.6rem !important; 
    color: #777 !important; 
    display: block !important; 
    font-weight: 400 !important; 
    margin-top: 0.2rem !important; 
} 

.tarifa-caracteristicas { 
    list-style: none !important; 
    padding: 0 !important; 
    margin: 0 0 2rem 0 !important; 
    text-align: center !important; 
} 

.tarifa-caracteristicas li { 
    padding: 0.6rem 0 !important; 
    color: #555 !important; 
    border-bottom: 1px dashed #e0e0e0 !important; 
    font-size: 0.95rem !important; 
} 

.tarifa-caracteristicas li:last-child { 
    border-bottom: none !important; 
} 

.tarifa-card .cta-button { 
    width: 100% !important; 
    text-align: center !important; 
}

/* ==========================================================================
   9. SECCIÓN CONTACTO Y FORMULARIO
   ========================================================================== */
.contacto { 
    background: #f7f5f0 !important; 
    padding: 3rem 2rem 4rem 2rem !important; /* Reducido el espacio superior e inferior */
} 

.contacto-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; /* Espacio entre columnas un poco más compacto */
    max-width: 1000px; 
    margin: 0 auto; 
} 

.contacto-info { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
} 

.contacto-item { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-bottom: 1.5rem; 
    padding: 1.5rem; 
    background: white; 
    border-radius: 10px; 
    box-shadow: 0 3px 15px rgba(0,0,0,0.03); 
} 

.contacto-item-icon { 
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, #709370, #3b533b) !important; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.3rem; 
    flex-shrink: 0; 
    color: white; 
} 

.contacto-item h4 { 
    color: #2b3a2b; 
    margin-bottom: 0.25rem; 
} 

.contacto-item p, .contacto-item a { 
    color: #555; 
    text-decoration: none; 
} 

.contacto-item a:hover { 
    color: #465e46; 
} 

.contacto-form { 
    background: white; 
    padding: 1.5rem 2rem; /* Compactado el relleno interno del fondo blanco */
    border-radius: 12px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); 
} 

.form-group { 
    margin-bottom: 1rem; /* Reducida la separación entre campos de 1.5rem a 1rem */
} 

.form-group label { 
    display: block; 
    margin-bottom: 0.3rem; /* Texto de la etiqueta más pegado al campo */
    font-weight: 500; 
    color: #2b3a2b; 
    font-size: 0.9rem; /* Letra sutilmente más pequeña y limpia */
} 

.form-group select { 
    appearance: none !important; 
    -webkit-appearance: none !important; 
    -moz-appearance: none !important; 
    padding-right: 3rem !important; 
    cursor: pointer !important; 
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://w3.org' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235a785a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important; 
    background-repeat: no-repeat !important; 
    background-position: right 1.2rem center !important; 
    background-size: 1.2rem !important; 
    accent-color: #5a785a !important; 
} 

.form-group select option { 
    background-color: #ffffff !important; 
    color: #2b3a2b !important; 
    padding: 10px !important; 
} 

.form-group select option:hover, .form-group select option:focus, .form-group select option:checked, .form-group select option:active { 
    color: #ffffff !important; 
    background-color: #5a785a !important; 
    box-shadow: 0 0 10px 100px #5a785a inset !important; 
} 

.form-group select::selection, .form-group select:focus option:checked { 
    color: #ffffff !important; 
    background-color: #5a785a !important; 
    box-shadow: 0 0 10px 100px #5a785a inset !important; 
} 

/* Reducimos el tamaño de los inputs, select y textarea */
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; 
    padding: 0.6rem 1rem !important; /* Reducido el grosor interno drásticamente */
    border: 1px solid #dcd9d2 !important; 
    border-radius: 8px !important; /* Esquinas un poco más estilizadas para campos más finos */
    font-family: inherit; 
    font-size: 0.9rem !important; 
    color: #333 !important; 
    background-color: #ffffff !important; 
    transition: all 0.3s ease; 
} 

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    outline: none !important; 
    border-color: #5a785a !important; 
    box-shadow: 0 0 0 4px rgba(90, 120, 90, 0.1) !important; 
} 

.form-group textarea { 
    resize: vertical; 
    min-height: 80px; /* Reducida la altura inicial del cuadro de mensaje de 120px a 80px */
}

.submit-btn { 
    width: 100%; 
    padding: 0.8rem; /* Botón de enviar ligeramente más estilizado */
    background: linear-gradient(135deg, #709370, #3b533b) !important; 
    color: white; 
    border: none; 
    border-radius: 8px; 
    font-size: 1rem; 
    font-weight: 600; 
    cursor: pointer; 
    transition: transform 0.3s, box-shadow 0.3s; 
    margin-top: 0.5rem;
} 

.submit-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 20px rgba(90, 120, 90, 0.4); 
}

/* ==========================================================================
   10. BOTÓN FLOTANTE PANTALLA COMPLETA & FOOTER
   ========================================================================== */
.boton-cerrar-fullscreen {
    position: fixed !important;
    bottom: 20px !important; /* Subido de 20px a 70px para liberar los controles del tour */
    right: 20px !important;
    z-index: 2147483647 !important; 
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: #2b3a2b !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 10px 18px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.boton-cerrar-fullscreen:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2) !important;
}

footer { 
    background: #eae7e1 !important; 
    color: #3b533b !important; 
    text-align: center !important; 
    padding: 2.5rem 2rem !important; 
    border-top: 1px solid #e0dbd1; 
} 

footer p { 
    opacity: 0.9 !important; 
    font-size: 0.95rem !important; 
    font-weight: 500 !important; 
} 

/* ==========================================================================
   11. BANNER DE COOKIES
   ========================================================================== */
#cookie-banner {
    position: fixed !important; /* Fuerza al navegador a sacarlo del flujo de la página */
    bottom: 0 !important;       /* Lo ancla matemáticamente al borde inferior de la pantalla */
    left: 0 !important;         /* Lo alinea perfectamente a la izquierda */
    width: 100% !important;     /* Garantiza que cubra todo el ancho horizontal */
    z-index: 999999 !important; /* Se asegura de flotar por encima de cualquier otra sección o imagen */
    transform: none !important; /* Evita que animaciones o efectos de scroll de tu script.js lo muevan */
    
    /* Mantenemos tus estilos estéticos exactos */
    background-color: #ffffff; 
    color: #333333; 
    padding: 12px 24px; 
    box-shadow: 0px -2px 10px rgba(0,0,0,0.1); 
    font-family: Arial, sans-serif; 
    font-size: 13px; 
    display: none; /* Lo gestiona el js/cookies.js */
    box-sizing: border-box;
}

#cookie-banner .banner-container {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 15px;
}

#cookie-banner p {
    margin: 0; 
    line-height: 1.4; 
    flex: 1; 
    min-width: 280px;
}

#cookie-banner .banner-buttons {
    display: flex; 
    gap: 10px; 
    align-items: center;
}

#cookie-banner button {
    padding: 8px 16px; /* Un poco más de área de clic para móviles */
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: bold;
    font-size: 13px;
    transition: background-color 0.2s ease; /* Transición suave para los hovers */
}

#btn-reject-cookies {
    background: none; 
    border: 1px solid #777777; 
    color: #555555;
}

#btn-accept-cookies {
    background-color: #3b533b; 
    border: none; 
    color: #ffffff;
}

/* Efectos visuales al pasar el ratón por encima */
#btn-accept-cookies:hover {
    background-color: #4a684a; /* Verde corporativo ligeramente más claro */
}
#btn-reject-cookies:hover {
    background-color: #f5f5f5;
    border-color: #555555;
}



/* ==========================================================================
   12. ADAPTACIÓN PARA MÓVILES Y PANTALLAS PEQUEÑAS (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) { 
    .tarifas-row { 
        flex-wrap: wrap !important; 
    } 
    .tarifa-card { 
        flex: 1 1 45% !important; 
    } 
} 

@media (max-width: 768px) { 
    .menu-toggle { 
        display: flex; 
    } 
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: #ffffff; 
        flex-direction: column; 
        padding: 1rem 2rem; 
        gap: 1rem; 
        z-index: 999; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
    } 
    .nav-links a { 
        color: #3b533b; 
    } 
    .nav-links.active { 
        display: flex !important; 
        position: absolute; 
        top: 110px; 
        left: 0; 
        right: 0; 
        background: #f7f5f0 !important; 
        flex-direction: column; 
        padding: 2rem; 
        gap: 1.5rem; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
        z-index: 999; 
    } 
    .hero-content-left { 
        margin-top: 40px; 
        padding: 1.5rem !important; 
    } 
    .hero h1 { 
        font-size: 2rem; 
    } 
    .hero p { 
        font-size: 1rem; 
    } 
    .section-title h2 { 
        font-size: 1.8rem; 
    } 
    .contacto-container { 
        grid-template-columns: 1fr !important; /* Pasa a 1 columna en vertical */
        gap: 2rem !important; 
    } 

    /* FORZAMOS A QUE EL FORMULARIO SE MUESTRE PRIMERO EN MÓVILES */
    .columna-formulario {
        order: 1 !important; /* Se coloca en primera posición */
    }

    /* LA INFORMACIÓN DE CONTACTO PASARÁ A ESTAR ABAJO */
    .columna-info {
        order: 2 !important; /* Se coloca en segunda posición */
    }
    .logo img { 
        width: 160px; 
    } 
} 

@media (max-width: 576px) { 
    .tarifa-card { 
        flex: 1 1 100% !important; 
    } 
    .tarifa-card.destacado { 
        transform: none !important; 
    } 
}

@media (max-width: 768px) {
    #cookie-banner .banner-container {
        flex-direction: column;
        text-align: center;
    }
    #cookie-banner p {
        min-width: 100%;
    }
    #cookie-banner .banner-buttons {
        width: 100%;
        justify-content: center;
    }
    #cookie-banner button {
        flex: 1; /* Los botones toman el mismo ancho en móviles */
        max-width: 150px;
    }

}
@media (max-width: 768px) {
    .section-title p {
        white-space: normal !important;
        font-size: 14px;
        padding: 0 15px;
    }
}