body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Evitar scroll horizontal */
    /* El color de fondo base se define en el body class="bg-black" */
}

/* Estilo general para las secciones (principalmente espaciado y altura mínima) */
.scroll-section {
    min-height: 100vh;
    display: flex; /* Para centrar el contenido con Tailwind (justify-center items-center) */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px; /* Aumenté el padding vertical para más espacio */
    position: relative; 
    overflow: hidden; /* Para evitar que elementos animados se salgan si es necesario */
}

/* Eliminamos las clases .scroll-section opacity/transform y .is-visible, GSAP lo controla */

/* Estilos específicos para la primera sección (Intro) */
#intro-section .dac-title-char { /* Renombré para la animación GSAP del título */
    display: inline-block; /* Necesario para transformar caracteres individuales */
    /* GSAP definirá la opacidad y transformación inicial y final */
}

/* Estilos para las imágenes de marcador de posición */
.placeholder-image {
    border-radius: 0.75rem;
    /* margin-top y margin-bottom se pueden controlar con Tailwind (mt-*, mb-*) */
    max-width: 90%; /* Un poco más flexible */
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Sombra sutil general */
}

.bg-white-section .placeholder-image {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); 
}
.bg-black-section .placeholder-image {
     box-shadow: 0 10px 20px rgba(255, 255, 255, 0.08); 
}

/* Estilo para las secciones con fondo blanco */
.bg-white-section {
    background-color: #FFFFFF;
    color: #000000;
}

/* Estilo para las secciones con fondo negro (default, pero para explicitar) */
.bg-black-section {
    background-color: #000000;
    color: #FFFFFF;
}

/* Estilos para la sección de servicios (items) */
#services-section .service-item { /* Usamos la clase .service-item */
    font-size: 1.25rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem 0;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

#services-section.bg-white-section .service-item {
    border-color: #000000; 
    color: #000000; 
}
#services-section.bg-white-section .service-item:hover {
    background-color: #000000; 
    color: #FFFFFF; 
}

#services-section.bg-black-section .service-item { /* Esto sería para una sección de servicios con fondo negro */
    border-color: #FFFFFF;
    color: #FFFFFF;
}
#services-section.bg-black-section .service-item:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Estilos para títulos DAC */
.dac-title {
    /* letter-spacing: -0.04em; /* Ajustado si es necesario */
    text-transform: uppercase;
    /* line-height: 0.8; /* Controlado por Tailwind (leading-none o similar) */
}

.title-line {
    /* GSAP controlará la opacidad y transformaciones.
       Podemos definir un estado inicial aquí o directamente en GSAP.
       Por ahora, dejaremos que GSAP lo maneje. */
    will-change: transform, opacity; /* Optimización para GSAP */
}

#intro-animation-container { /* Contenedor de la animación de intro */
    perspective: 1000px; 
}

.dac-title { /* El H1 contenedor */
    text-transform: uppercase;
    /* line-height y font-size ya están bien con Tailwind */
}

.title-line { /* Contenedor de cada palabra: "DAC", "SOCCER", "TRAINER" */
    display: block; 
    will-change: transform, opacity; 
}

/* Esta será la clase para cada LETRA individual que crearemos con JS */
.dac-title-char { 
    display: inline-block; 
    will-change: transform, opacity, filter; /* Añadimos filter para el blur */
    /* No necesitamos overflow:hidden aquí si cada letra se anima individualmente */
}

/* Estilos para la sección Misión */
.mission-paragraph-words span {
    display: inline-block; /* Necesario para transformar palabras individuales */
    will-change: transform, opacity, filter; /* Optimización para GSAP */
    margin-right: 0.2em; /* Ajusta el espacio entre palabras si es necesario */
    margin-bottom: 0.2em; /* Si las palabras se envuelven en múltiples líneas */
}

/* Aplicar 'Fredoka One' al párrafo de la sección Misión */
#mision-section .mission-paragraph-words {
    font-family: 'Fredoka One', cursive; /* Google Fonts la categoriza como 'cursive', pero es más bien un display/bubble. */
    /* La clase 'font-bold' de Tailwind podría ser redundante ya que Fredoka One es inherentemente audaz.
       Puedes probar quitar 'font-bold' de las clases HTML del párrafo para ver su aspecto natural. */
}

/* Animaciones para palabras clave */
.highlight-text .word {
    position: relative;
    display: inline-block;
    margin-right: 0.2em;
}

.highlight-text .word.key-word::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 40%;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.7), rgba(255, 165, 0, 0.7));
    z-index: -1;
    border-radius: 2px;
}

/* Efectos para las imágenes */
.revelation-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.revelation-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.revelation-image-container:hover::before {
    opacity: 1;
}

/* Caracteres del título para animación en comunidad */
#comunidad-section .char-anim-comunidad {
    display: inline-block; /* Necesario para transformar caracteres individuales */
    will-change: transform, opacity; /* Optimización para la animación */
    transform-origin: center bottom; /* Para que la rotación en X se vea bien */
}

/* ========================================= */
/* MEJORAS ESPECÍFICAS PARA COMUNIDAD (SIN CONFLICTOS) */
/* ========================================= */

/* Solo mejoras específicas que no interfieren con Tailwind */
#comunidad-title.section-title {
    line-height: 1.1 !important; /* Forzar mejor line-height */
    word-spacing: 0.1em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Caracteres del título con mejor spacing */
#comunidad-section .char-anim-comunidad {
    margin-right: 0.02em;
}

/* Video container mejorado sin conflictos */
#comunidad-video-container {
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#comunidad-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

/* Mejoras responsive específicas para el título */
@media (max-width: 768px) {
    #comunidad-title.section-title {
        line-height: 1.1 !important;
    }
}

@media (max-width: 480px) {
    #comunidad-title.section-title {
        line-height: 1.2 !important;
    }
}

/* Reemplaza toda la sección de CSS de comunidad con esto: */

/* ========================================= */
/* SOLUCIÓN FINAL - TÍTULO CON SALTO CONTROLADO */
/* ========================================= */

/* Título con salto de línea controlado */
#comunidad-title.section-title {
    line-height: 1.1 !important; /* Líneas más juntas */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    white-space: normal; /* Permitir saltos de línea */
}

/* Caracteres del título con spacing normal */
#comunidad-section .char-anim-comunidad {
    display: inline-block;
    will-change: transform, opacity;
    transform-origin: center bottom;
}

/* Video container */
#comunidad-video-container {
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#comunidad-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

/* Responsive para el título */
@media (max-width: 768px) {
    #comunidad-title.section-title {
        font-size: 3rem !important; /* 48px */
        line-height: 1.0 !important;
    }
    
    #comunidad-video-container {
        min-height: 300px !important;
    }
}

@media (max-width: 480px) {
    #comunidad-title.section-title {
        font-size: 2.5rem !important; /* 40px */
        line-height: 1.0 !important;
    }
    
    #comunidad-video-container {
        min-height: 250px !important;
        margin: 0 1rem !important;
    }
}

/* ========================================= */
/* ESTILOS PARA LA SECCIÓN DE SERVICIOS/PRODUCTOS - CORREGIDOS */
/* ========================================= */

/* Contenedor de pestañas */
#tab-content-area {
    position: relative;
    min-height: 400px;
    width: 100%;
}

/* Estados de las pestañas usando clases CSS en lugar de !important */
.tab-pane {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Pestaña activa */
.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

/* Pestaña inactiva */
.tab-pane.inactive {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    z-index: 1;
}

/* Estado inicial específico (sin !important) */
#productos-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

#servicios-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    z-index: 1;
}

/* Estilos para pestañas activas */
.tab-button.active-tab {
    color: #000000;
    border-bottom-color: #000000;
    font-weight: 700;
}

.tab-button:not(.active-tab) {
    color: #6b7280;
    border-bottom-color: transparent;
    font-weight: 600;
}

.tab-button {
    transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    border-color: transparent;
}

.tab-button:hover {
    color: #000000;
    border-color: #d1d5db;
}

/* Estilos para las tarjetas */
.product-item, .service-item-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    opacity: 1;
    transform: none;
    visibility: visible;
}

.product-item:hover, .service-item-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 25px -8px rgba(0,0,0,0.12);
}

/* Botones de WhatsApp */
.whatsapp-button {
    background-color: #25d366;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-button svg { /* Si decides añadir un icono SVG al botón */
    width: 1.25em;
    height: 1.25em;
    margin-right: 0.5em;
}

/* ========================================= */
/* ESTILOS PARA LA SECCIÓN MISIÓN */
/* ========================================= */

#mision-section {
    height: 100vh; /* Altura completa de la ventana */
    min-height: 600px; /* Altura mínima para pantallas pequeñas */
}

#mision-section .section-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#mision-section .flex.h-full {
    height: 100%;
}

/* Asegurar que la imagen ocupe toda la altura */
#mision-section .md\:w-1\/2:last-child {
    height: 100vh;
    min-height: 600px;
}

#mision-section .section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mejores márgenes para el texto */
#mision-section .section-title {
    margin-bottom: 4rem;
    line-height: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #mision-section {
        height: auto;
        min-height: 100vh;
    }
    
    #mision-section .md\:w-1\/2:last-child {
        height: 50vh;
        min-height: 400px;
    }
    
    #mision-section .section-title {
        font-size: 3rem;
        line-height: 0.85;
        margin-bottom: 1.5rem;
    }
    
    #mision-section .mission-paragraph-words {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    #mision-section .section-title {
        font-size: 2.5rem;
    }
    
    #mision-section .mission-paragraph-words {
        font-size: 1.25rem;
    }
}

/* Animación de paralaje para la imagen (opcional) */
#mision-section .section-image {
    transform: translateZ(0); /* Optimización para GPU */
    will-change: transform;
}

/* ========================================= */
/* ESTILOS PARA LA SECCIÓN COMUNIDAD - VIDEO GRANDE */
/* ========================================= */

/* Estilos específicos para hacer el video más grande */
#comunidad-section .section-content {
    max-width: none; /* Removemos límite de ancho para usar más espacio */
    padding-left: 1rem;
    padding-right: 1rem;
}

#comunidad-video-container {
    width: 90%; /* Usamos 90% del ancho disponible */
    max-width: 1400px; /* Ancho máximo más grande */
    height: 600px; /* Altura fija más grande */
    min-height: 500px; /* Altura mínima aumentada */
    aspect-ratio: auto; /* Removemos aspect-ratio fijo */
    margin: 0 auto;
}

#comunidad-video-container .section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Centrar el video */
}

/* Responsive para diferentes tamaños de pantalla */
@media (min-width: 1536px) {
    #comunidad-video-container {
        width: 85%;
        max-width: 1600px;
        height: 700px;
        min-height: 600px;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    #comunidad-video-container {
        width: 85%;
        max-width: 1200px;
        height: 550px;
        min-height: 500px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    #comunidad-video-container {
        width: 90%;
        max-width: 900px;
        height: 500px;
        min-height: 450px;
    }
}

@media (max-width: 1023px) {
    #comunidad-video-container {
        width: 95%;
        height: 400px;
        min-height: 350px;
    }
    
    #comunidad-section .section-content {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    #comunidad-video-container {
        width: 98%;
        height: 300px;
        min-height: 250px;
    }
    
    #comunidad-title.section-title {
        font-size: 3rem !important;
        line-height: 1.0 !important;
    }
    
    #comunidad-section .section-text {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    #comunidad-video-container {
        width: 100%;
        height: 250px;
        min-height: 200px;
        margin: 0;
        border-radius: 0.5rem;
    }
    
    #comunidad-title.section-title {
        font-size: 2.5rem !important;
    }
    
    #comunidad-section .section-text {
        font-size: 1.25rem !important;
    }
}

/* Efectos hover mejorados para el video más grande */
#comunidad-video-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease;
}

/* ========================================= */
/* ESTILOS PARA EL LOGO PARTIDO */
/* ========================================= */

/* Clase para cuando la animación está activa */
.animation-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999 !important;
    overflow: hidden !important;
    background: #000000 !important;
}

/* Ocultar el navbar durante la animación en móviles */
@media (max-width: 768px) {
    body.intro-animating .navbar-glass {
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    body.intro-animating {
        overflow: hidden !important;
    }
}

#logo-container {
    z-index: 5;
    pointer-events: none;
}

.logo-half {
    position: absolute;
    width: 60vw; /* 60% del ancho de pantalla */
    height: 60vh; /* 60% del alto de pantalla */
    max-width: 800px; /* Límite máximo */
    max-height: 800px; /* Límite máximo */
    min-width: 400px; /* Mínimo para que no sea muy pequeño */
    min-height: 400px; /* Mínimo para que no sea muy pequeño */
    overflow: hidden;
}

#logo-left {
    clip-path: inset(0 50% 0 0); /* Muestra solo la mitad izquierda */
}

#logo-right {
    clip-path: inset(0 0 0 50%); /* Muestra solo la mitad derecha */
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
}

/* Responsive para el logo GRANDE */
@media (max-width: 1024px) {
    .logo-half {
        width: 65vw;
        height: 50vh;
        min-width: 350px;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .logo-half {
        width: 70vw;
        height: 40vh;
        min-width: 280px;
        min-height: 280px;
        max-width: 500px;
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .logo-half {
        width: 80vw;
        height: 35vh;
        min-width: 250px;
        min-height: 250px;
        max-width: 350px;
        max-height: 350px;
    }
}

/* Asegurar que el título esté oculto inicialmente */
#dac-main-title {
    opacity: 0;
    transform: scale(0.8);
}

/* Optimizaciones para la animación */
.logo-half, .logo-image, #dac-main-title, .dac-title-char {
    will-change: transform, opacity, clip-path;
}

/* ========================================= */
/* ESTILOS PARA LA SECCIÓN SUEÑO - VIDEO GRANDE */
/* ========================================= */

/* Sección sueño con video optimizado */
#sueno-section .section-content {
    max-width: none; /* Usar todo el ancho disponible */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

#sueno-video-container {
    width: 85%; /* Usar 85% del ancho disponible */
    max-width: 1200px; /* Ancho máximo más grande */
    height: 500px; /* Altura fija más grande */
    min-height: 450px; /* Altura mínima */
    aspect-ratio: auto; /* Removemos aspect ratio fijo para más control */
    margin: 0 auto;
}

#sueno-video-container .section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive para diferentes tamaños */
@media (min-width: 1536px) {
    #sueno-video-container {
        width: 80%;
        max-width: 1400px;
        height: 600px;
        min-height: 550px;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    #sueno-video-container {
        width: 82%;
        max-width: 1100px;
        height: 550px;
        min-height: 500px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    #sueno-video-container {
        width: 85%;
        max-width: 900px;
        height: 450px;
        min-height: 400px;
    }
}

@media (max-width: 1023px) {
    #sueno-video-container {
        width: 90%;
        height: 400px;
        min-height: 350px;
    }
    
    #sueno-section .section-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    #sueno-video-container {
        width: 95%;
        height: 300px;
        min-height: 250px;
    }
    
    #sueno-section .section-title {
        font-size: 3rem !important;
    }
    
    #sueno-section .section-text {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    #sueno-video-container {
        width: 98%;
        height: 250px;
        min-height: 200px;
        border-radius: 0.5rem;
    }
    
    #sueno-section .section-title {
        font-size: 2.5rem !important;
    }
    
    #sueno-section .section-text {
        font-size: 1.125rem !important;
    }
}

/* Efectos hover para el video */
#sueno-video-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
}

/* Optimización para el párrafo */
#sueno-section .section-text {
    max-width: 85%; /* Usar más espacio horizontal */
}

/* ========================================= */
/* RESPONSIVE PARA SERVICIOS */
/* ========================================= */

@media (max-width: 768px) {
    #tab-content-area {
        min-height: 350px;
    }
    
    .product-item, .service-item-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    #tab-content-area {
        min-height: 300px;
    }
}

/* ========================================= */
/* ESTILOS PARA MODAL DE PRODUCTOS */
/* ========================================= */

/* Animaciones para el modal */
.modal-overlay {
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.modal-content {
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    transition: all 0.2s ease;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Mejoras para las cards de productos */
.product-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Botón WhatsApp con efecto */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Estilo para la imagen/video demo */
.demo-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
        max-width: calc(100vw - 2rem);
    }
    
    #modalTitle {
        font-size: 1.875rem !important;
        line-height: 1.2 !important;
    }
    
    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    #modalMedia {
        aspect-ratio: 16/9 !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 0.5rem;
        max-height: 98vh;
        max-width: calc(100vw - 1rem);
        padding: 1rem !important;
    }
    
    #modalTitle {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    #modalSubtitle {
        font-size: 0.875rem !important;
    }
    
    .grid.md\\:grid-cols-2 {
        gap: 1rem !important;
    }
    
    #modalMedia {
        aspect-ratio: 4/3 !important;
    }
    
    #whatsappButton {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.875rem !important;
    }
    
    .whatsapp-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ========================================= */
/* NAVBAR STYLES */
/* ========================================= */

/* Glassmorphism */
.navbar-glass {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Flotante */
.navbar-floating {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Botones */
.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    transition: all 0.3s ease;
    transform: translateY(0);
    padding-left: 4rem !important; /* Aumentado el padding izquierdo */
    padding-right: 4rem !important; /* Aumentado el padding derecho */
    font-size: 1.25rem !important; /* Bastante más grande (20px) */
    font-weight: 700 !important; /* Opcional: más bold */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.btn-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-elegant {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-elegant:hover::before {
    left: 100%;
}

.btn-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 41, 55, 0.4);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efecto hide/show en scroll */
nav {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 640px) {
    .navbar-glass,
    .navbar-minimal {
        left: 0.5rem;
        right: 0.5rem;
        top: 0.5rem;
    }
    
    .navbar-floating {
        padding: 0.75rem 1rem;
    }
}

/* Responsive para móviles */
@media (max-width: 640px) {
    .navbar-glass {
        padding: 0.75rem 1rem !important;
    }
    
    .btn-primary {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-top: 0.625rem !important;
        padding-bottom: 0.625rem !important;
        font-size: 0.875rem !important;
    }
}

@media (max-width: 480px) {
    .navbar-glass {
        left: 0.25rem !important;
        right: 0.25rem !important;
        top: 0.25rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .btn-primary {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        font-size: 0.75rem !important;
    }
    
    .btn-primary span {
        display: none;
    }
    
    .btn-primary svg {
        width: 1rem !important;
        height: 1rem !important;
    }
}

/* Responsive para títulos principales */
@media (max-width: 640px) {
    .dac-title {
        font-size: 2.5rem !important; /* 40px */
        line-height: 1 !important;
    }
    
    .section-title {
        font-size: 2rem !important; /* 32px */
        line-height: 1.1 !important;
    }
}

@media (max-width: 480px) {
    .dac-title {
        font-size: 2rem !important; /* 32px */
        line-height: 1 !important;
    }
    
    .section-title {
        font-size: 1.75rem !important; /* 28px */
        line-height: 1.1 !important;
    }
}

@media (max-width: 360px) {
    .dac-title {
        font-size: 1.75rem !important; /* 28px */
        line-height: 1 !important;
    }
    
    .section-title {
        font-size: 1.5rem !important; /* 24px */
        line-height: 1.1 !important;
    }
}

/* Responsive para videos y multimedia */
@media (max-width: 640px) {
    #sueno-video-container {
        height: 200px !important;
        width: 100% !important;
    }
    
    #comunidad-video-container {
        height: 200px !important;
        width: 100% !important;
    }
    
    .section-video {
        height: 100% !important;
    }
}

@media (max-width: 480px) {
    #sueno-video-container {
        height: 180px !important;
        margin: 0 0.5rem !important;
    }
    
    #comunidad-video-container {
        height: 180px !important;
        margin: 0 0.5rem !important;
    }
}

/* Responsive para espaciado y padding de secciones */
@media (max-width: 640px) {
    .scroll-section {
        padding: 40px 15px !important;
        min-height: auto !important;
    }
    
    /* Excepción para la sección intro - siempre pantalla completa */
    #intro-section {
        min-height: 100vh !important;
        padding: 0 !important;
    }
    
    .section-content {
        padding: 0 !important;
    }
    
    /* Ajustar secciones específicas */
    #mision-section .flex {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    #inflexion-section .section-content {
        padding: 2rem 1rem !important;
    }
    
    #revelacion-section {
        padding: 2rem 1rem !important;
    }
    
    #sueno-section,
    #comunidad-section {
        padding: 3rem 1rem !important;
    }
    
    #services-section {
        padding: 2rem 1rem !important;
    }
}

@media (max-width: 480px) {
    .scroll-section {
        padding: 30px 10px !important;
    }
    
    /* Mantener intro-section a pantalla completa */
    #intro-section {
        min-height: 100vh !important;
        padding: 0 !important;
    }
    
    #mision-section .flex {
        gap: 1.5rem !important;
    }
    
    #inflexion-section .section-content {
        padding: 1.5rem 0.75rem !important;
    }
    
    #revelacion-section,
    #sueno-section,
    #comunidad-section {
        padding: 2rem 0.75rem !important;
    }
    
    #services-section {
        padding: 1.5rem 0.75rem !important;
    }
    
    /* Ajustar grid de productos/servicios */
    .grid.sm\\:grid-cols-1.md\\:grid-cols-2.lg\\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .grid.sm\\:grid-cols-1.md\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ========================================= */
/* LÍNEA DECORATIVA PARA NAVBAR */
/* ========================================= */

/* Línea decorativa principal */
.decorative-line {
    height: 2px;
    flex: 1;
    margin: 0 2rem;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 0.1),
        rgba(212, 175, 55, 0.3),
        rgba(212, 175, 55, 0.8),
        rgba(255, 215, 0, 1),
        rgba(212, 175, 55, 0.8),
        rgba(212, 175, 55, 0.3),
        rgba(212, 175, 55, 0.1)
    );
    background-size: 200% 100%;
    animation: lightPass 7s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    border-radius: 1px;
}
/* Efecto sutil de animación */
.decorative-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0.7;
}

/* Hover effect opcional */
.navbar-glass:hover .decorative-line {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.navbar-glass:hover .decorative-line::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Responsive: ocultar en móviles pequeños */
@media (max-width: 640px) {
    .decorative-line {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .decorative-line {
        display: none;
    }
}

/* ========================================= */
/* NAVBAR LOGO IMPROVEMENTS */
/* ========================================= */

.navbar-glass .logo-container {
    transition: all 0.3s ease;
}

.navbar-glass .logo-container:hover {
    transform: scale(1.05);
}

.navbar-glass .logo-container img {
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.navbar-glass .logo-container:hover img {
    filter: brightness(1.2) contrast(1.2);
}

/* ========================================= */
/* EFECTO LUZ NEÓN PASANDO SUAVE */
/* ========================================= */

/* Reemplaza tu .decorative-line actual con esto: */


/* Animación de la luz pasando */
@keyframes lightPass {
    0% {
        background-position: -100% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
    100% {
        background-position: -100% 0%;
    }
}

/* Efecto hover para intensificar */
.navbar-glass:hover .decorative-line {
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.3);
    animation-duration: 2s;
}

/* Responsive: ajustar en móviles */
@media (max-width: 640px) {
    .decorative-line {
        margin: 0 1rem;
        height: 1.5px;
    }
}

@media (max-width: 480px) {
    .decorative-line {
        display: none; /* Ocultar en móviles muy pequeños */
    }
}

/* Agregar resplandor sutil al navbar completo */
.navbar-glass {
    transition: all 0.3s ease;
}

.navbar-glass:hover {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(212, 175, 55, 0.15);
}

/* Hacer que el botón pulse al ritmo de la luz */
.navbar-glass:hover .btn-primary {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: translateY(-2px) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.02);
    }
}

/* ========================================= */
/* BURBUJA FLOTANTE DE WHATSAPP */
/* ========================================= */

.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bubblePulse 2s ease-in-out infinite;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-bubble svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Tooltip opcional */
.whatsapp-bubble::before {
    content: "¡Hablemos por WhatsApp!";
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-bubble::after {
    content: "";
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-bubble:hover::before,
.whatsapp-bubble:hover::after {
    opacity: 1;
}

/* Animación de pulso */
@keyframes bubblePulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-bubble svg {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-bubble::before,
    .whatsapp-bubble::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-bubble {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-bubble svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================= */
/* SECCIÓN DE TESTIMONIOS */
/* ========================================= */

#testimonios-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
}

.testimonios-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonio-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonio-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Comillas decorativas */
.testimonio-quote {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: rgba(212, 175, 55, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonio-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
    margin-top: 20px;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.testimonio-info {
    flex: 1;
}

.testimonio-name {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.testimonio-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Rating stars */
.testimonio-rating {
    margin-top: 20px;
    display: flex;
    gap: 5px;
}

.star {
    color: #D4AF37;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    #testimonios-section {
        padding: 60px 15px;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonio-card {
        padding: 30px 20px;
    }
    
    .testimonio-text {
        font-size: 16px;
    }
    
    .testimonio-quote {
        font-size: 40px;
    }
}
