/* ===========================
   VARIABLES Y RESET - PALETA MAGIC PLACE
   =========================== */
:root {
    /* Colores primarios del logo */
    --pink: #FF85D0;           /* Rosa chicle */
    --pink-light: #CB6CE6;     /* Rosa-morado */
    --yellow: #FFE57A;         /* Amarillo */
    --blue: #5170FF;           /* Azul */
    --blue-light: #748DFF;     /* Azul claro */
    --green: #98E179;          /* Verde lima */
    --magenta: #D589EB;        /* Magenta */
    --dark: #262728;           /* Gris oscuro secundario */
    --footer-bg: #111827;
    --footer-text: #ffffff;
    --footer-muted: #9CA3AF;
    --footer-wave-bg: #ffffff;
    --footer-wave-height: 120px;

    /* Escala de grises */
    --gray-900: #1a1a1a;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-400: #9CA3AF;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;

    --white: #ffffff;

    --transition: all 0.3s ease;

    /* ===========================
       SISTEMA TIPOGRÁFICO (Solo 4 tamaños)
       =========================== */
    --font-title: 2.875rem;    /* 46px - Titulares principales */
    --font-subtitle: 1.5rem;   /* 24px - Subtítulos y destacados */
    --font-body: 1.125rem;     /* 18px - Párrafos y texto base */
    --font-small: 0.875rem;    /* 14px - Elementos pequeños, labels */

    /* Responsive */
    --font-title-mobile: 2.25rem;
    --font-subtitle-mobile: 1.25rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

/* ===========================
   UTILIDADES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-dark {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 1000;
    padding: 1.25rem 0;
}

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

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--blue) 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    margin-top: 0.75rem;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    padding: 0.75rem;
    min-width: 200px;
    z-index: 1001;
}

.mobile-menu a {
    display: block;
    padding: 0.6rem 0.75rem;
    text-decoration: none;
    color: var(--gray-700);
    border-radius: 10px;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: var(--gray-50);
    color: var(--blue);
}

.navbar .container {
    position: relative;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    color: var(--white);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(255, 133, 208, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    border-color: transparent;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 8rem;
    /* Simplificado para mejor rendimiento */
    background:
        linear-gradient(135deg,
            rgba(255, 229, 122, 0.85) 0%,
            rgba(152, 225, 121, 0.7) 25%,
            rgba(81, 112, 255, 0.7) 50%,
            rgba(255, 133, 208, 0.85) 100%
        ),
        url('../images/frontal.webp') center/cover no-repeat;
    overflow: visible;
    /* Optimización GPU */
    will-change: transform;
    transform: translateZ(0);
}

/* Capa de fondo extendida que cubre hasta el waveform */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    bottom: -150px; /* Extender hacia abajo para cubrir el waveform */
    background: inherit;
    z-index: 0;
}

/* Overlay para mejor legibilidad - eliminado para ver la imagen completa */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.hero-content-centered {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255, 229, 122, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 229, 122, 0.5);
    color: var(--dark);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: var(--font-title);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    position: relative;
    /* Efecto de gotas de pintura con colores del logo */
    text-shadow:
        -2px -2px 0 rgba(255, 133, 208, 0.9),  /* Rosa */
        2px -2px 0 rgba(203, 108, 230, 0.9),   /* Morado */
        -2px 2px 0 rgba(152, 225, 121, 0.9),   /* Verde lima */
        2px 2px 0 rgba(255, 229, 122, 0.9),    /* Amarillo */
        0 -2px 0 rgba(81, 112, 255, 0.9),      /* Azul */
        0 2px 0 rgba(152, 225, 121, 0.9),      /* Verde lima */
        -2px 0 0 rgba(255, 133, 208, 0.9),     /* Rosa */
        2px 0 0 rgba(81, 112, 255, 0.9);       /* Azul */
}

.hero-title .gradient-text {
    /* Gradiente con colores del logo */
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero de inicio: SOLO sombra blanca difuminada (como antes) */
#inicio .hero-title span {
    /* Sobrescribir efecto de gotas con sombra blanca */
    text-shadow:
        2px 2px 3px rgba(255, 255, 255, 0.8),
        -2px -2px 3px rgba(255, 255, 255, 0.8),
        0 0 8px rgba(255, 255, 255, 0.6),
        0 0 16px rgba(255, 255, 255, 0.4);
}

.hero-description {
    font-size: var(--font-body);
    color: var(--gray-900);
    margin-bottom: 2rem;
    line-height: 1.7;
    /* Mejorar contraste del texto */
    text-shadow:
        1px 1px 3px rgba(255, 255, 255, 1),
        -1px -1px 3px rgba(255, 255, 255, 1),
        0 0 10px rgba(255, 255, 255, 0.8);
    /* Fondo más opaco para mejor legibilidad */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}


.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    /* Forma de gota orgánica */
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo en las gotas */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0.5;
}

.image-placeholder .emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.image-placeholder p {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.image-placeholder small {
    font-size: 0.875rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* ===========================
   WAVE DIVIDER - SEPARADOR ONDULADO
   =========================== */
.wave-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    z-index: 5; /* Por encima del overlay pero debajo del contenido */
}

.wave-divider-bottom svg {
    display: block;
    width: calc(100% + 2px);
    height: 120px;
}

/* Onda del hero tiene un drop shadow para destacar sobre la imagen */
.hero .wave-divider-bottom svg {
    filter: drop-shadow(0 -4px 8px rgba(0, 0, 0, 0.1));
}

/* ===========================
   BENEFITS SECTION
   =========================== */
.benefits {
    position: relative;
    padding: 1rem 0 10rem; /* padding inferior mayor para la onda */
    /* Gradiente amarillo → rosa → termina en azul claro para transición suave */
    background: linear-gradient(180deg,
        #FFF9E6 0%,      /* Amarillo muy claro - coincide con onda del hero */
        #FFE5F5 25%,     /* Rosa muy claro */
        #FFE3F0 50%,     /* Rosa chicle claro */
        #FFEEF7 70%,     /* Rosa palido */
        #E3EDFF 100%     /* Azul claro - coincide con onda hacia about */
    );
    overflow: hidden;
}

.section-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: var(--font-title);
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    /* Efecto de gotas de pintura con colores del logo */
    text-shadow:
        -2px -2px 0 rgba(255, 133, 208, 0.9),  /* Rosa */
        2px -2px 0 rgba(203, 108, 230, 0.9),   /* Morado */
        -2px 2px 0 rgba(152, 225, 121, 0.9),   /* Verde lima */
        2px 2px 0 rgba(255, 229, 122, 0.9),    /* Amarillo */
        0 -2px 0 rgba(81, 112, 255, 0.9),      /* Azul */
        0 2px 0 rgba(152, 225, 121, 0.9),      /* Verde lima */
        -2px 0 0 rgba(255, 133, 208, 0.9),     /* Rosa */
        2px 0 0 rgba(81, 112, 255, 0.9);       /* Azul */
}

/* "Por qué elegirnos" en inicio: SOLO degradado (sin efecto de gotas) */
#inicio .section-title,
.benefits .section-title {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Quitar efecto de gotas */
    text-shadow: none;
}

.section-subtitle {
    font-size: var(--font-body);
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

.benefits .section-subtitle {
    color: var(--gray-700);
}

.benefits-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.connector-line {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
    pointer-events: none;
}

/* Segunda línea conectora para la segunda fila */
.connector-line:nth-of-type(2) {
    top: calc(4rem + 22rem); /* Altura de primera fila (icono 12rem + texto ~7rem) + gap 3rem */
}

.benefit-card {
    position: relative;
    z-index: 10;
    text-align: center;
}

.benefit-icon {
    width: 12rem;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Contenedor con clip para la imagen */
.benefit-icon {
    overflow: hidden;
}

/* Gotitas decorativas alrededor - aparecen en hover */
.benefit-card::before,
.benefit-card::after {
    content: '';
    position: absolute;
    background: #a8c5ff;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 20;
}

/* Gota superior derecha - forma de gota real */
.benefit-card::before {
    width: 16px;
    height: 20px;
    top: 0.5rem;
    right: calc(50% - 7.5rem);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-30deg) scale(0) translateY(25px);
    box-shadow:
        25px 35px 0 -4px #c5d9ff,
        -60px 20px 0 -6px #a8c5ff;
}

/* Gota inferior izquierda */
.benefit-card::after {
    width: 12px;
    height: 15px;
    top: 5.5rem;
    left: calc(50% - 8rem);
    border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
    transform: rotate(40deg) scale(0) translateX(20px);
    box-shadow:
        -20px -50px 0 -3px #c5d9ff;
}

.benefit-card:hover::before {
    opacity: 0.8;
    transform: rotate(-30deg) scale(1) translateY(0);
}

.benefit-card:hover::after {
    opacity: 0.7;
    transform: rotate(40deg) scale(1) translateX(0);
    transition-delay: 0.08s;
}

/* Formas de salpicadura diferentes para cada gota */
.benefit-card:nth-child(2) .benefit-icon {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.benefit-card:nth-child(3) .benefit-icon {
    border-radius: 40% 60% 70% 30% / 30% 60% 40% 70%;
}

.benefit-card:nth-child(4) .benefit-icon {
    border-radius: 55% 45% 35% 65% / 65% 35% 55% 45%;
}

.benefit-card:nth-child(5) .benefit-icon {
    border-radius: 30% 70% 55% 45% / 50% 45% 55% 50%;
}

.benefit-card:nth-child(7) .benefit-icon {
    border-radius: 65% 35% 45% 55% / 40% 65% 35% 60%;
}

.benefit-card:nth-child(8) .benefit-icon {
    border-radius: 45% 55% 60% 40% / 55% 30% 70% 45%;
}

.benefit-card:nth-child(9) .benefit-icon {
    border-radius: 35% 65% 40% 60% / 60% 50% 50% 40%;
}

.benefit-card:nth-child(10) .benefit-icon {
    border-radius: 60% 40% 50% 50% / 35% 60% 40% 65%;
}

/* Hover: crece más y transforma a otra forma de salpicadura */
.benefit-card:hover .benefit-icon {
    transform: scale(1.18) rotate(4deg);
}

.benefit-card:nth-child(2):hover .benefit-icon { border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%; }
.benefit-card:nth-child(3):hover .benefit-icon { border-radius: 60% 40% 45% 55% / 55% 40% 60% 40%; }
.benefit-card:nth-child(4):hover .benefit-icon { border-radius: 45% 55% 60% 40% / 40% 60% 40% 60%; }
.benefit-card:nth-child(5):hover .benefit-icon { border-radius: 55% 45% 40% 60% / 60% 45% 55% 45%; }
.benefit-card:nth-child(7):hover .benefit-icon { border-radius: 50% 50% 35% 65% / 55% 50% 50% 45%; }
.benefit-card:nth-child(8):hover .benefit-icon { border-radius: 35% 65% 50% 50% / 45% 55% 45% 55%; }
.benefit-card:nth-child(9):hover .benefit-icon { border-radius: 55% 45% 55% 45% / 50% 40% 60% 50%; }
.benefit-card:nth-child(10):hover .benefit-icon { border-radius: 45% 55% 45% 55% / 55% 50% 50% 45%; }

.bg-pink {
    background: #FFE5F5; /* Rosa muy claro */
}

.bg-blue {
    background: #E3EDFF; /* Azul muy claro */
}

.bg-purple {
    background: #F3E5FF; /* Magenta claro */
}

.bg-orange {
    background: #FFF6D5; /* Amarillo muy claro */
}

.benefit-card h3 {
    font-size: var(--font-subtitle);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    position: relative;
    padding: 0.5rem 0 10rem; /* padding superior reducido para acercar al waveform */
    /* Gradiente azul claro → verde → termina en magenta para transición suave */
    background: linear-gradient(180deg,
        #E3EDFF 0%,      /* Azul muy claro - coincide con onda de benefits */
        #D4F2E8 25%,     /* Verde muy claro */
        #DCEDC8 50%,     /* Verde suave */
        #E8E0F0 75%,     /* Transición hacia magenta */
        #F3E5FF 100%     /* Magenta claro - coincide con onda hacia contact */
    );
    overflow: hidden;
}

/* Círculos flotantes decorativos */
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatSlow 15s infinite ease-in-out;
}

.circle-1 {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 40px;
    height: 40px;
    background: var(--blue);
    top: 70%;
    left: 10%;
    animation-delay: 3s;
}

.circle-3 {
    width: 50px;
    height: 50px;
    background: var(--green);
    top: 40%;
    right: 8%;
    animation-delay: 6s;
}

.circle-4 {
    width: 70px;
    height: 70px;
    background: var(--pink);
    bottom: 15%;
    right: 15%;
    animation-delay: 9s;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-15px);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--magenta) 50%, var(--pink) 100%);
    /* Forma de gota diferente */
    border-radius: 60% 40% 45% 55% / 65% 50% 50% 35%;
}

/* Carrusel de imágenes del About con forma orgánica */
.about-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    /* Forma de gota orgánica igual que el placeholder */
    border-radius: 60% 40% 45% 55% / 65% 50% 50% 35%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.about-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-carousel-slide.active {
    opacity: 1;
}

.about-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botones de navegación del carrusel */
.about-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
}

.about-carousel:hover .about-carousel-nav {
    opacity: 1;
}

.about-carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.about-carousel-nav.prev {
    left: 1rem;
}

.about-carousel-nav.next {
    right: 1rem;
}

/* Indicadores del carrusel */
.about-carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.about-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-carousel-dot.active {
    background: rgba(255, 255, 255, 1);
    width: 24px;
    border-radius: 5px;
}

.about-text h2 {
    font-size: var(--font-title);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* Gradient text con colores del logo */
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: var(--font-body);
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 1rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    position: relative;
    padding: 1rem 0 10rem; /* padding superior reducido aún más */
    /* Gradiente magenta → azul para finalizar con colores del logo */
    background: linear-gradient(180deg,
        #F3E5FF 0%,      /* Magenta muy claro */
        #E5D5FF 25%,     /* Magenta claro */
        #D5E5FF 50%,     /* Azul claro */
        #C5DCFF 75%,     /* Azul medio */
        #B5D3FF 100%     /* Azul más intenso */
    );
    color: var(--gray-900);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    color: var(--gray-900);
}

.contact-form-wrapper h2 {
    font-size: var(--font-title);
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-100);
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.contact-form textarea {
    resize: none;
}

.form-legal {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-align: center;
}

.form-legal a {
    color: var(--blue);
    text-decoration: none;
}

.contact-info h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--blue) 0%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info > p {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials {
    background: #1a1a2e;
    padding: 5rem 0;
    position: relative;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials h2 {
    font-size: var(--font-title);
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.testimonials .section-title {
    font-size: var(--font-title);
    font-weight: 800;
    background: linear-gradient(135deg, #FF85D0 0%, #D946A6 50%, #5170FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.testimonials .section-subtitle {
    font-size: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars span {
    color: #FBBC05;
    font-size: 1.25rem;
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-small);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.testimonial-avatar-img {
    overflow: hidden;
    background: var(--gray-400);
}

.testimonial-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-info .verified {
    color: #4285F4;
    font-size: 0.875rem;
}

.testimonial-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-date a {
    color: #4285F4;
    text-decoration: none;
}

.testimonial-stars {
    color: #FBBC05;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--font-small);
    line-height: 1.6;
    margin: 0;
}

.testimonials-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.testimonials-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials .section-title {
        font-size: var(--font-title-mobile);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .google-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    /* Fondo oscuro de la paleta */
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-col p {
    color: var(--footer-muted);
    font-size: 0.875rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--footer-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--footer-text);
}

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

.footer-bottom p {
    color: var(--footer-muted);
    font-size: 0.875rem;
}

/* Separador ondulado antes del footer */
.footer-wave {
    position: relative;
    background: var(--footer-wave-bg);
    height: var(--footer-wave-height);
    overflow: hidden;
}

.footer-wave-dark {
    background: #1a1a2e;
}

.footer-wave-soft {
    background: #F9FAFB;
}

.wave-divider-bottom.wave-divider-footer svg {
    height: var(--footer-wave-height);
}

.wave-divider-bottom.wave-divider-footer path {
    fill: var(--footer-bg);
}

/* WhatsApp en footer */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #25D366;
    text-decoration: none;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    color: #128C7E;
}

.footer-whatsapp svg {
    flex-shrink: 0;
}

/* WhatsApp en contacto */
.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.whatsapp-link:hover {
    transform: translateX(5px);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.2) !important;
    color: #25D366;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    fill: white;
}

/* ===========================
   HERO PLANES
   =========================== */
.hero-planes {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 10rem;
    background: linear-gradient(135deg, #E3EDFF 0%, #D5E5FF 35%, #C5DCFF 70%, #B5D3FF 100%);
    overflow: hidden;
}

/* ===========================
   HERO UBICACION
   =========================== */
.hero-ubicacion {
    background: linear-gradient(135deg, #FF85D0 0%, #5170FF 100%);
    min-height: 40vh !important;
    padding: 8rem 0 6rem !important;
}

/* Hero compacto para planes y reservas */
.hero-planes-compact {
    min-height: 40vh;
    padding: 8rem 0 6rem;
}

.hero-planes-compact .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Texto intro de planes sin fondo */
.pricing-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Sección de precios compacta */
.pricing-section-compact {
    padding: 3rem 0 calc(10rem - var(--footer-wave-height));
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing-section {
    position: relative;
    padding: 0rem 0 calc(10rem - var(--footer-wave-height));
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 2rem;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--blue);
}

.pricing-card.featured {
    border: 3px solid var(--blue);
    background: linear-gradient(180deg, #E3EDFF 0%, #FFFFFF 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(81, 112, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 133, 208, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.pricing-card.featured .pricing-icon {
    width: 90px;
    height: 90px;
    font-size: 3rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--gray-600);
    font-size: 1rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--blue);
}

.pricing-card.featured .price-amount {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 1.25rem;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-info {
    text-align: center;
    background: linear-gradient(135deg, #E3EDFF 0%, #FFE5F5 50%, #FFF9E6 100%);
    padding: 3rem;
    border-radius: 2rem;
    margin-top: 4rem;
}

.pricing-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-info p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===========================
   HERO GALLERY
   =========================== */
.hero-gallery {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 10rem;
    background: linear-gradient(135deg, #FFE5F5 0%, #FFDBF0 35%, #FFD1EB 70%, #FFC7E6 100%);
    overflow: hidden;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
    position: relative;
    padding: 1rem 0 calc(10rem - var(--footer-wave-height)) 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.875rem 2rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    color: var(--white);
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(81, 112, 255, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* ===========================
   GALLERY FILTERS
   =========================== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.gallery-filters .filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--pink);
    border-radius: 50px;
    background: transparent;
    color: var(--pink);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filters .filter-btn:hover {
    background: rgba(255, 133, 208, 0.1);
    transform: translateY(-2px);
}

.gallery-filters .filter-btn.active {
    background: linear-gradient(135deg, var(--pink), var(--blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 133, 208, 0.3);
}

.gallery-filters .filter-icon {
    font-size: 1rem;
}

.gallery-filters .filter-label {
    white-space: nowrap;
}

/* Category badges in carousel */
.carousel-categories {
    display: flex;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

.carousel-categories .category-badge {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .gallery-filters .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .gallery-filters .filter-icon {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-filters .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }

    .gallery-filters .filter-label {
        display: none;
    }

    .gallery-filters .filter-btn:first-child .filter-label {
        display: inline;
    }
}

/* ===========================
   GALLERY CAROUSEL
   =========================== */
.gallery-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--gray-600);
}

.gallery-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-100);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.carousel-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--gray-100);
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.carousel-caption p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-700);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    color: var(--pink);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.gallery-count {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.gallery-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gray-50);
    border-radius: 1.5rem;
}

.gallery-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-empty p {
    color: var(--gray-700);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gallery-empty small {
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav.prev {
        left: 0.5rem;
    }

    .carousel-nav.next {
        right: 0.5rem;
    }

    .carousel-caption {
        padding: 1rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}

/* ===========================
   UBICACION SECTION
   =========================== */
.ubicacion-section {
    padding: 2rem 0 6rem;
    background: var(--white);
    position: relative;
}

.ubicacion-section .section-header {
    margin-bottom: 3rem;
}

.ubicacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.info-content p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.info-content a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--magenta);
}

.info-note {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #F8F9FA;
    border-radius: 8px;
}

.horario-dia {
    font-weight: 600;
    color: var(--gray-700);
}

.horario-hora {
    color: var(--gray-600);
}

.ubicacion-cta {
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .ubicacion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 350px;
    }

    .horarios-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   EVENT CARD STYLES
   =========================== */
.event-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===========================
   CALENDAR STYLES
   =========================== */

/* Calendar de disponibilidad en index */
#prev-month:hover,
#next-month:hover {
    border-color: var(--blue) !important;
    color: var(--blue) !important;
    transform: scale(1.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    flex: 1;
    text-align: center;
    color: var(--gray-900);
}

.calendar-header button {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.calendar-header button:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day-header {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.day {
    min-height: 120px;
    border: 2px solid var(--gray-100);
    border-radius: 0.75rem;
    padding: 0.5rem;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.day.empty {
    background: transparent;
    border: none;
}

.day.has-events {
    background: var(--white);
    border-color: var(--blue);
}

.day:hover:not(.empty) {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--blue);
}

.day-number {
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.event-marker {
    display: block;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    background: var(--blue);
    color: white;
    border-radius: 6px;
    margin-top: 0.25rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s;
    font-weight: 500;
}

.event-marker:hover {
    background: var(--magenta);
    transform: scale(1.02);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ===========================
   VIEW BUTTON STYLES
   =========================== */
.btn.active {
    background: #ff6b9d !important;
    color: white !important;
    border-color: #ff6b9d !important;
}

.btn:not(.active) {
    background: white !important;
    color: #ff6b9d !important;
    border: 2px solid #ff6b9d !important;
}

/* Animaciones */
@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-section {
    padding: 12rem 0 8rem;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink) 0%, var(--magenta) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-text p {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-text ul {
    margin: 1.5rem 0 1.5rem 2rem;
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.8;
}

.legal-text li {
    margin-bottom: 0.75rem;
}

.legal-text strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-content {
        position: relative;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        gap: 0.5rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .navbar.nav-open .mobile-menu {
        display: flex;
        flex-direction: column;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    #inicio .hero-content-centered {
        margin-top: 1.5rem;
    }

    .hero-title {
        font-size: var(--font-title-mobile);
    }

    .hero-description {
        font-size: var(--font-body);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: var(--font-title-mobile);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .connector-line {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .spacer {
        margin: 2rem 0;
    }

    /* Responsive pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* Responsive gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-image {
        height: 280px;
    }

    /* Responsive legal */
    .legal-title {
        font-size: var(--font-title-mobile);
    }

    .legal-text h2 {
        font-size: var(--font-subtitle-mobile);
    }

    .legal-text p,
    .legal-text ul {
        font-size: var(--font-body);
    }

    /* Responsive calendar */
    .calendar-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)) !important;
        gap: 0.25rem !important;
    }

    .day {
        min-height: 100px !important;
        padding: 0.25rem !important;
    }

    .day-number {
        font-size: 0.85rem !important;
    }

    .event-marker {
        font-size: 0.65rem !important;
        padding: 0.15rem 0.35rem !important;
    }

    .calendar-header button {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Responsive availability calendar */
    .calendar-availability-container {
        grid-template-columns: 1fr !important;
    }
}
