/* ===================================================
   EFFETTI GROUP — Cada detalle genera un efecto
   Premium Dark | Fluid Motion | Editorial Luxury
   =================================================== */

:root {
    --black: #08090e;
    --black-soft: #0e1019;
    --black-lighter: #141722;
    --accent: #5b8aff;
    --accent-light: #89b0ff;
    --accent-dark: #3a6ae0;
    --violet: #9b6dff;
    --violet-light: #b794ff;
    --warm: #ffd6a0;
    --gradient-accent: linear-gradient(135deg, #5b8aff 0%, #9b6dff 50%, #cf8fff 100%);
    --gradient-warm: linear-gradient(135deg, #ffd6a0 0%, #ffb36b 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(91,138,255,0.12) 0%, rgba(155,109,255,0.12) 100%);
    --white: #eef0f6;
    --white-muted: rgba(238, 240, 246, 0.5);
    --white-dim: rgba(238, 240, 246, 0.1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.07);
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-script: 'Pacifico', cursive;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--black);
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--black); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

/* ---- CURSOR GLOW ---- */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,138,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    will-change: transform;
}

@media (max-width: 991px) {
    .cursor-glow { display: none; }
}

/* ---- NOISE OVERLAY ---- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* ---- LOADER ---- */
#loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-inner { text-align: center; }

.loader-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.loader-img {
    height: clamp(50px, 6vw, 80px);
    width: auto;
    object-fit: contain;
    transform: translateY(120%);
    opacity: 0;
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    display: flex;
    gap: 2px;
}

.loader-text span {
    display: inline-block;
    transform: translateY(120%);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-philosophy {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-top: 1.5rem;
    opacity: 0;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: var(--white-dim);
    margin: 2rem auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* ---- NAVIGATION ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    transition: background 0.6s var(--ease-smooth), padding 0.6s var(--ease-smooth), border-color 0.6s var(--ease-smooth);
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(8, 9, 14, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1rem 3rem;
    border-bottom-color: var(--glass-border);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out-expo);
}

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

.nav-logo-text {
    font-family: var(--font-script);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.logo-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s var(--ease-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.6s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--accent-light); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-cta {
    border: 1px solid var(--accent);
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    transition: all 0.5s var(--ease-out-expo);
}

.nav-links a.nav-cta::after { display: none; }

.nav-links a.nav-cta:hover {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 0 30px rgba(91, 138, 255, 0.25);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    z-index: 1001;
}

.toggle-line {
    display: block;
    width: 30px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.5s var(--ease-out-expo);
    transform-origin: center;
}

.menu-toggle.active .toggle-line:first-child { transform: translateY(4.75px) rotate(45deg); }
.menu-toggle.active .toggle-line:last-child { transform: translateY(-4.75px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-links { text-align: center; }
.mobile-links li { overflow: hidden; }
.mobile-links a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}
.mobile-menu.open .mobile-links a { transform: translateY(0); opacity: 1; }
.mobile-links a:hover { color: var(--accent-light); }

@media (max-width: 991px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    nav { padding: 1.2rem 1.5rem; overflow-x: hidden; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    .nav-inner { width: 100%; }
}

/* ---- LAYOUT ---- */
.container { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 10rem 0; position: relative; }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.text-center { text-align: center; }

/* ---- TYPOGRAPHY ---- */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.big-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2rem;
}

.big-heading em {
    font-style: italic;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4rem;
}

.body-large { font-size: 1.1rem; line-height: 1.8; color: var(--white); margin-bottom: 1.5rem; }
.body-medium { font-size: 0.95rem; line-height: 1.8; }
.muted { color: var(--white-muted); }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-container { position: absolute; inset: 0; }

.hero-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(0.6);
    will-change: transform;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8,9,14,0.6) 0%, rgba(8,9,14,0.05) 40%, rgba(8,9,14,0.9) 100%),
        linear-gradient(90deg, rgba(8,9,14,0.8) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 8rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
}

.tag-line { display: block; width: 40px; height: 1px; background: var(--accent); }

.tag-text {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white-muted);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 2.5rem;
}

.title-line { display: block; overflow: hidden; padding-bottom: 0.1em; }

.title-word {
    display: inline-block;
    font-size: clamp(3rem, 7vw, 6rem);
    transform: translateY(120%);
    opacity: 0;
    margin-right: 0.2em;
}

.title-word:last-child { margin-right: 0; }

.title-word.accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.title-word.italic { font-style: italic; font-size: clamp(3rem, 7vw, 6rem); }

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.12rem);
    line-height: 2;
    color: var(--white-muted);
    max-width: 540px;
    margin-bottom: 3rem;
    opacity: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    opacity: 0;
}

.stat { text-align: left; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--accent);
    line-height: 1;
}

.stat-symbol {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-top: 0.5rem;
}

/* Scroll Cue */
.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-muted);
    writing-mode: vertical-rl;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: var(--accent);
    animation: scrollPulse 2.5s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); opacity: 0; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

@media (max-width: 768px) {
    .scroll-cue { display: none; }
}

/* ---- BUTTONS ---- */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2.5rem;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--violet-light) 100%);
    transform: translateX(-101%);
    transition: transform 0.6s var(--ease-out-expo);
}

.btn-magnetic:hover::before { transform: translateX(0); }
.btn-magnetic:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(91, 138, 255, 0.25); }

.btn-text, .btn-arrow { position: relative; z-index: 1; }
.btn-arrow { display: flex; align-items: center; transition: transform 0.5s var(--ease-out-expo); }
.btn-magnetic:hover .btn-arrow { transform: translateX(6px); }
.btn-magnetic.large { padding: 1.4rem 3.5rem; font-size: 0.85rem; }

.btn-ghost {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out-expo);
}

.btn-ghost:hover { color: var(--accent-light); }
.btn-ghost:hover::after { background: var(--accent-light); transform: scaleX(0); transform-origin: left; }

/* ---- MARQUEE ---- */
.marquee-strip {
    overflow: hidden;
    padding: 1.2rem 0;
    background: var(--black-soft);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    white-space: nowrap;
    animation: marqueeSlide 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white-muted);
    font-style: italic;
}

.marquee-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marqueeSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- FILOSOFÍA ---- */
.section-filosofia { background: var(--black); }

.philosophy-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    opacity: 0.5;
}

.sig-line { display: block; width: 30px; height: 1px; background: var(--accent); }
.sig-text { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white-muted); }

/* ---- SERVICES ---- */
.section-servicios { background: var(--black-soft); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.service-card {
    padding: 3rem;
    position: relative;
    border: 1px solid var(--glass-border);
    transition: all 0.7s var(--ease-out-expo);
    overflow: hidden;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.service-card:hover::before { opacity: 0.06; }
.service-card:hover { border-color: var(--accent); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(91, 138, 255, 0.08); }

.service-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    color: var(--glass-border);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.5s ease;
    position: relative;
}

.service-card:hover .service-number { color: var(--accent); opacity: 0.2; }

.service-icon { font-size: 1.8rem; color: var(--accent); margin-bottom: 1.5rem; position: relative; }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.8;
    position: relative;
}

.service-tag {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-top: 1.5rem;
    position: relative;
    opacity: 0.6;
}

.service-line {
    width: 30px;
    height: 1px;
    background: var(--accent);
    margin-top: 2rem;
    transition: width 0.6s var(--ease-out-expo);
    position: relative;
}

.service-card:hover .service-line { width: 80px; }

/* ---- EXPERIENCE ---- */
.section-experiencia { background: var(--black); overflow: hidden; padding-bottom: 4rem; }

.experience-bg-text {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(15rem, 25vw, 30rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    opacity: 0.015;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.experience-image-wrapper { position: relative; }

.exp-image { border-radius: 12px; overflow: hidden; position: relative; }

.exp-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo);
}

.exp-image:hover img { transform: scale(1.04); }

.exp-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 1px solid var(--accent);
    border-left: 1px solid var(--accent);
    opacity: 0.4;
}

.experience-event {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.timeline-steps { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.2rem; }

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.5s var(--ease-out-expo);
}

.timeline-step:hover {
    border-color: var(--accent);
    background: var(--glass);
    transform: translateX(8px);
}

.step-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.step-content h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 0.3rem; }
.step-content p { font-size: 0.85rem; color: var(--white-muted); }

/* ---- EL LUGAR ---- */
.section-lugar { background: var(--black-soft); }

.lugar-content { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 4rem; align-items: center; margin-top: 4rem; }

.gallery-main { border-radius: 12px; overflow: hidden; position: relative; }

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo);
}

.gallery-main:hover img { transform: scale(1.04); }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(8,9,14,0.9));
}

.gallery-overlay span { font-family: var(--font-display); font-size: 1.2rem; color: var(--accent-light); font-style: italic; }

.lugar-info h3 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 3px; color: var(--white); margin-bottom: 1.5rem; }
.lugar-info p { color: var(--white-muted); line-height: 1.9; margin-bottom: 2rem; font-size: 0.95rem; }

.lugar-socials { display: flex; flex-direction: column; gap: 1rem; }
.lugar-socials a { display: inline-flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--white-muted); transition: all 0.4s ease; }
.lugar-socials a i { font-size: 1.3rem; color: var(--accent); }
.lugar-socials a:hover { color: var(--accent-light); transform: translateX(5px); }

.lugar-intro { font-size: 1.05rem; color: var(--white-muted); max-width: 650px; margin: -1rem auto 4rem; line-height: 1.9; }

/* ---- TIPOS DE EVENTOS ---- */
.section-eventos { background: var(--black); padding-top: 6rem; }

.eventos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }

.evento-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.evento-card::before { content: ''; position: absolute; inset: 0; background: var(--gradient-accent); opacity: 0; transition: opacity 0.6s ease; }
.evento-card:hover::before { opacity: 0.05; }
.evento-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(91, 138, 255, 0.08); }

.evento-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 1.5rem; position: relative; }

.evento-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: 0.5rem; position: relative; }

.evento-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.evento-card > p:last-child { font-size: 0.85rem; color: var(--white-muted); line-height: 1.8; position: relative; }

@media (max-width: 600px) { .eventos-grid { grid-template-columns: 1fr; } }

/* ---- INSTALACIONES ---- */
.section-instalaciones { background: var(--black-soft); }

.precio-hero { text-align: center; margin: 4rem auto 5rem; max-width: 600px; }

.precio-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 4rem;
    background: var(--gradient-subtle);
    border: 1px solid rgba(91, 138, 255, 0.3);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.precio-badge:hover { border-color: var(--accent); transform: scale(1.02); box-shadow: 0 0 60px rgba(91, 138, 255, 0.1); }

.precio-badge::before { content: ''; position: absolute; inset: 0; background: var(--gradient-accent); opacity: 0.04; }

.precio-desde { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-light); position: relative; }

.precio-valor {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    cursor: pointer;
}

.precio-unidad { font-size: 0.85rem; color: var(--white-muted); position: relative; }
.precio-nota { color: var(--white-muted); font-size: 0.8rem; margin-top: 1.5rem; line-height: 1.7; }

.subsection-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); text-align: center; margin-bottom: 1rem; }
.subsection-desc { text-align: center; color: var(--white-muted); font-size: 0.9rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.instalaciones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 5rem; margin-top: 2rem; }

.instalacion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.5s var(--ease-out-expo);
}

.instalacion-item:hover { border-color: var(--accent); background: var(--glass); transform: translateX(5px); }
.instalacion-item i { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; width: 24px; text-align: center; }
.instalacion-item span { font-size: 0.88rem; color: var(--white); }

.adicionales-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.8rem; margin-bottom: 2rem; }

.adicional-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: all 0.4s var(--ease-out-expo);
}

.adicional-item:hover { border-color: var(--violet); background: var(--glass); }
.adicional-item i { font-size: 1rem; color: var(--violet-light); flex-shrink: 0; width: 20px; text-align: center; }
.adicional-item span { font-size: 0.82rem; color: var(--white-muted); }

.adicionales-nota { text-align: center; color: var(--accent-light); font-size: 0.82rem; font-weight: 500; margin-top: 1rem; font-style: italic; }

/* ---- CÓMO RESERVAR ---- */
.section-reservar { background: var(--black); position: relative; overflow: hidden; }

.section-reservar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(155,109,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.reservar-steps { display: flex; align-items: flex-start; justify-content: center; gap: 2rem; margin: 4rem 0; position: relative; }

.reservar-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
}

.reservar-step:hover { border-color: var(--accent); background: var(--glass); transform: translateY(-6px); }

.reservar-step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.reservar-step h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; }
.reservar-step p { font-size: 0.85rem; color: var(--white-muted); line-height: 1.8; }

.reservar-step-arrow { display: flex; align-items: center; margin-top: 4rem; color: var(--accent); font-size: 1.3rem; flex-shrink: 0; opacity: 0.4; }

.reservar-cta { text-align: center; margin-top: 2rem; }

.btn-magnetic.btn-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.btn-magnetic.btn-whatsapp::before { background: linear-gradient(135deg, #2ee675 0%, #1da87a 100%); }
.btn-magnetic.btn-whatsapp:hover { box-shadow: 0 20px 50px rgba(37, 211, 102, 0.25); }
.btn-whatsapp .btn-text i { margin-right: 0.5rem; font-size: 1.1rem; }

.reservar-phones { color: var(--white-muted); font-size: 0.82rem; margin-top: 1.5rem; }
.reservar-phones strong { color: var(--white); }

@media (max-width: 991px) {
    .reservar-steps { flex-direction: column; align-items: center; }
    .reservar-step { max-width: 100%; }
    .reservar-step-arrow { margin-top: 0; transform: rotate(90deg); }
}

/* ---- CTA ---- */
.section-cta {
    background: var(--black);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,138,255,0.08) 0%, rgba(155,109,255,0.04) 40%, transparent 70%);
    pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.cta-line { display: block; color: var(--white); }
.cta-line.accent { font-style: italic; background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: ctaPulse 3s ease-in-out infinite;
}

.cta-badge i { color: #00b4ff; font-size: 0.8rem; }
.cta-badge span { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #66d4ff; }

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 180, 255, 0.2); }
    50% { box-shadow: 0 0 30px 10px rgba(0, 180, 255, 0.08); }
}

.cta-desc { color: var(--white-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 3rem; line-height: 1.8; }
.section-cta .cta-main-btn { padding: 1.6rem 4rem; font-size: 0.95rem; }
.cta-trust { color: var(--white-muted); font-size: 0.75rem; margin-top: 1.5rem; opacity: 0.5; }
.cta-trust i { color: var(--accent); margin-right: 0.4rem; }

/* ---- CONTACT ---- */
.section-contacto { background: var(--black-soft); }

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

.form-field { position: relative; }
.form-field input, .form-field textarea {
    width: 100%;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.5s ease;
    outline: none;
    resize: none;
}

.form-field label {
    position: absolute;
    top: 1.2rem;
    left: 0;
    font-size: 0.9rem;
    color: var(--white-muted);
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
}

.form-field input:focus ~ label, .form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label, .form-field textarea:not(:placeholder-shown) ~ label {
    top: -0.8rem;
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--black-soft);
    padding: 0 0.3rem;
}

.field-line { position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.5s var(--ease-out-expo); }
.form-field input:focus ~ .field-line, .form-field textarea:focus ~ .field-line { width: 100%; }

/* ---- FOOTER ---- */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    background: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 4rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

.footer-logo-text { font-family: var(--font-script); font-size: 1.3rem; }
.footer-tagline { font-size: 0.75rem; color: var(--white-muted); margin-top: 0.5rem; font-style: italic; }

.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-size: 0.82rem; color: var(--white-muted); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent-light); }

.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-size: 1.2rem; color: var(--white-muted); transition: all 0.4s ease; }
.footer-social a:hover { color: var(--accent-light); transform: translateY(-3px); }

.footer-bottom { text-align: center; padding-top: 2rem; font-size: 0.7rem; color: var(--white-muted); letter-spacing: 1.5px; }

/* ---- AMBIENT GLOW ---- */
.section-filosofia::before, .section-experiencia::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
    pointer-events: none;
}

.section-filosofia::before { top: 20%; right: -10%; background: var(--accent); }
.section-experiencia::before { bottom: 10%; left: -10%; background: var(--violet); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-img {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.4s var(--ease-out-expo);
}

.reveal-img.revealed { clip-path: inset(0 0 0 0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .split-layout.reverse { direction: ltr; }
    .services-grid { grid-template-columns: 1fr; }
    .lugar-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .hero-stats { flex-direction: column; gap: 2rem; }
    .section { padding: 6rem 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-links { align-items: center; }
}

@media (max-width: 768px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .big-heading { font-size: clamp(2rem, 8vw, 3rem); }
    .service-card { padding: 2rem; }
    .exp-image img { height: 300px; }
    .gallery-main img { height: 300px; }
    .nav-logo-text { font-size: 1.1rem; }
}

/* ---- TICKET MODAL ---- */
.ticket-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s var(--ease-out-expo);
}

.ticket-modal.open { opacity: 1; visibility: visible; }

.ticket-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 14, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ticket-modal-content {
    position: relative;
    z-index: 1;
    background: var(--black-soft);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.6s var(--ease-out-expo);
}

.ticket-modal.open .ticket-modal-content { transform: translateY(0) scale(1); }

.ticket-modal-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 1.5rem; color: var(--white-muted); transition: color 0.3s ease; z-index: 1; }
.ticket-modal-close:hover { color: var(--accent-light); }

.ticket-modal-header { margin-bottom: 2rem; }

.ticket-modal-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.ticket-modal-header p { color: var(--white-muted); font-size: 0.9rem; }

.ticket-form { display: flex; flex-direction: column; gap: 1.5rem; }

.ticket-form .form-field input, .ticket-form .form-field textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    resize: none;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.ticket-form .form-field input:focus, .ticket-form .form-field textarea:focus {
    border-color: var(--accent);
    background: rgba(91, 138, 255, 0.05);
}

.ticket-form .form-field label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--white-muted);
    pointer-events: none;
    transition: all 0.4s var(--ease-out-expo);
}

.ticket-form .form-field input:focus ~ label, .ticket-form .form-field input:not(:placeholder-shown) ~ label,
.ticket-form .form-field textarea:focus ~ label, .ticket-form .form-field textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 0.75rem;
    font-size: 0.6rem;
    color: var(--accent-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--black-soft);
    padding: 0 0.3rem;
}

.ticket-form .form-field .field-line { display: none; }

.ticket-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.ticket-form select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.4s ease;
}

.ticket-form select:focus { border-color: var(--accent); }
.ticket-form select option { background: var(--black-soft); color: var(--white); }
.ticket-form .btn-magnetic { margin-top: 1rem; width: 100%; justify-content: center; }

.ticket-success { text-align: center; padding: 2rem 0; }
.ticket-success i { font-size: 4rem; color: var(--accent); margin-bottom: 1.5rem; }
.ticket-success h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem; }
.ticket-success p { color: var(--white-muted); font-size: 0.9rem; }

@media (max-width: 600px) {
    .ticket-form-row { grid-template-columns: 1fr; }
    .ticket-modal-content { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════
   ORGANIC OVERRIDES — Softer, rounder, less boxy
   ═══════════════════════════════════════════════ */

/* Round ALL cards and containers more aggressively */
.service-card { border-radius: 24px; }
.evento-card { border-radius: 20px; }
.instalacion-item { border-radius: 16px; }
.adicional-item { border-radius: 14px; }
.reservar-step { border-radius: 20px; }
.timeline-step { border-radius: 14px; }
.exp-image { border-radius: 20px; }
.gallery-main { border-radius: 20px; }
.precio-badge { border-radius: 24px; }
.ticket-modal-content { border-radius: 24px; }
.ticket-form .form-field input,
.ticket-form .form-field textarea { border-radius: 14px; }
.ticket-form select { border-radius: 14px; }
/* nav-cta border-radius already set in main nav styles */
.btn-magnetic { border-radius: 100px; }
.cta-badge { border-radius: 100px; }

/* Softer service card borders */
.service-card { border: 1px solid rgba(255,255,255,0.05); }
.service-card:hover { border-color: rgba(91,138,255,0.3); }

/* Gallery main softer shadow on hover */
.gallery-main:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.4); }

/* Softer section backgrounds with subtle curve top */
.section-servicios,
.section-lugar,
.section-instalaciones,
.section-contacto {
    border-radius: 28px 28px 0 0;
    margin-top: -28px;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════
   PHILOSOPHY WATERMARK — Large ghost text
   ═══════════════════════════════════════════════ */

.philosophy-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(12rem, 22vw, 28rem);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    opacity: 0.018;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   PHILOSOPHY DIVIDERS — Italic quotes between sections
   ═══════════════════════════════════════════════ */

.philosophy-divider {
    text-align: center;
    padding: 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.philosophy-divider::before,
.philosophy-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.philosophy-divider::before { left: 0; }
.philosophy-divider::after { right: 0; }

.divider-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 400;
    color: var(--white);
    opacity: 0.2;
    letter-spacing: 0.06em;
    display: inline-block;
    padding: 0 2rem;
    position: relative;
}

/* ═══════════════════════════════════════════════
   MANIFESTO — Visual philosophy statements
   ═══════════════════════════════════════════════ */

.manifesto {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.manifesto-line {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    padding-left: 1rem;
    border-left: 2px solid rgba(91,138,255,0.2);
    transition: border-color 0.5s ease;
}

.manifesto-line:hover {
    border-left-color: var(--accent);
}

.manifesto-num {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent-light);
    opacity: 0.5;
    flex-shrink: 0;
    font-family: var(--font-body);
    font-weight: 500;
}

.manifesto-line em {
    font-style: italic;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 600px) {
    .manifesto-line {
        flex-direction: column;
        gap: 0.3rem;
    }
    .manifesto { gap: 2rem; }
    .philosophy-divider { padding: 2.5rem 1rem; }
    .section-servicios,
    .section-lugar,
    .section-instalaciones,
    .section-contacto {
        border-radius: 18px 18px 0 0;
        margin-top: -18px;
    }
}

/* ═══════════════════════════════════════════════
   POOL / WATER / SUMMER VIBES
   ═══════════════════════════════════════════════ */

/* --- Water Text Title --- */
.water-text-title {
    font-family: var(--font-display) !important;
    font-size: 1.8rem !important;
    letter-spacing: 3px !important;
    color: transparent !important;
    background: linear-gradient(
        180deg,
        rgba(0, 200, 255, 0.9) 0%,
        rgba(91, 138, 255, 1) 30%,
        rgba(0, 220, 255, 0.8) 50%,
        rgba(91, 138, 255, 1) 70%,
        rgba(0, 200, 255, 0.9) 100%
    );
    background-size: 100% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waterTextFlow 3s ease-in-out infinite;
    position: relative;
}

.water-text-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 200, 255, 0.8), rgba(91, 138, 255, 0.3));
    border-radius: 2px;
    animation: waterLineFlow 3s ease-in-out infinite alternate;
}

@keyframes waterTextFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

@keyframes waterLineFlow {
    0% { width: 40px; opacity: 0.5; }
    50% { width: 80px; opacity: 1; }
    100% { width: 40px; opacity: 0.5; }
}

/* ═══════════════════════════════════════════════
   EFFERVESCENT BUBBLES — Fizzy soda rising effect
   ═══════════════════════════════════════════════ */
.bubbles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at 30% 25%,
        rgba(255, 255, 255, 0.35),
        rgba(0, 200, 255, 0.18) 40%,
        rgba(0, 160, 255, 0.08) 70%,
        transparent
    );
    box-shadow:
        inset 0 -2px 4px rgba(0, 180, 255, 0.12),
        inset 1px 1px 3px rgba(255, 255, 255, 0.25),
        0 2px 8px rgba(0, 120, 200, 0.06);
    animation: bubbleRise linear infinite;
    opacity: 0;
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.4);
        opacity: 0;
    }
    8% {
        opacity: 0.8;
        transform: translateY(-8vh) translateX(6px) scale(0.9);
    }
    25% {
        transform: translateY(-25vh) translateX(-10px) scale(1);
        opacity: 0.65;
    }
    50% {
        transform: translateY(-55vh) translateX(8px) scale(1.05);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-80vh) translateX(-6px) scale(1);
        opacity: 0.35;
    }
    90% {
        transform: translateY(-95vh) translateX(4px) scale(0.9);
        opacity: 0.15;
    }
    100% {
        transform: translateY(-110vh) translateX(0px) scale(0.8);
        opacity: 0;
    }
}

/* Size & position variants — BIGGER bubbles */
.b1  { width: 18px; height: 18px; left: 5%;   animation-duration: 8s;   animation-delay: 0s; }
.b2  { width: 12px; height: 12px; left: 10%;  animation-duration: 10s;  animation-delay: 0.5s; }
.b3  { width: 24px; height: 24px; left: 15%;  animation-duration: 7s;   animation-delay: 1s; }
.b4  { width: 10px; height: 10px; left: 20%;  animation-duration: 11s;  animation-delay: 0.3s; }
.b5  { width: 16px; height: 16px; left: 25%;  animation-duration: 9s;   animation-delay: 2s; }
.b6  { width: 22px; height: 22px; left: 30%;  animation-duration: 8.5s; animation-delay: 0.8s; }
.b7  { width: 14px; height: 14px; left: 35%;  animation-duration: 10.5s;animation-delay: 1.5s; }
.b8  { width: 20px; height: 20px; left: 40%;  animation-duration: 7.5s; animation-delay: 0.2s; }
.b9  { width: 10px; height: 10px; left: 45%;  animation-duration: 12s;  animation-delay: 3s; }
.b10 { width: 16px; height: 16px; left: 50%;  animation-duration: 9.5s; animation-delay: 1.2s; }
.b11 { width: 28px; height: 28px; left: 55%;  animation-duration: 8s;   animation-delay: 0.6s; }
.b12 { width: 12px; height: 12px; left: 60%;  animation-duration: 10s;  animation-delay: 2.5s; }
.b13 { width: 20px; height: 20px; left: 65%;  animation-duration: 7s;   animation-delay: 0.9s; }
.b14 { width: 10px; height: 10px; left: 70%;  animation-duration: 11.5s;animation-delay: 1.8s; }
.b15 { width: 15px; height: 15px; left: 75%;  animation-duration: 8.5s; animation-delay: 0.4s; }
.b16 { width: 22px; height: 22px; left: 80%;  animation-duration: 9s;   animation-delay: 2.2s; }
.b17 { width: 13px; height: 13px; left: 85%;  animation-duration: 10.5s;animation-delay: 1.1s; }
.b18 { width: 18px; height: 18px; left: 90%;  animation-duration: 7.5s; animation-delay: 0.7s; }
.b19 { width: 11px; height: 11px; left: 95%;  animation-duration: 12s;  animation-delay: 3.2s; }
.b20 { width: 15px; height: 15px; left: 8%;   animation-duration: 9s;   animation-delay: 1.6s; }
.b21 { width: 13px; height: 13px; left: 22%;  animation-duration: 11s;  animation-delay: 2.8s; }
.b22 { width: 24px; height: 24px; left: 38%;  animation-duration: 8s;   animation-delay: 0.1s; }
.b23 { width: 10px; height: 10px; left: 52%;  animation-duration: 10s;  animation-delay: 1.9s; }
.b24 { width: 17px; height: 17px; left: 68%;  animation-duration: 9.5s; animation-delay: 2.4s; }
.b25 { width: 20px; height: 20px; left: 82%;  animation-duration: 8.5s; animation-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   POLAROID STACK — Centered grid with organic rotations
   ═══════════════════════════════════════════════ */
.photo-gallery {
    margin-top: 2rem;
}

.polaroid-stack {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    justify-items: center;
    gap: 2rem 2.5rem;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1rem 0;
}

.polaroid {
    position: relative;
    background: #fff;
    padding: 10px 10px 36px 10px;
    border-radius: 3px;
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.6s var(--ease-out-expo);
    cursor: pointer;
    z-index: 1;
}

.polaroid:hover {
    z-index: 10;
    transform: scale(1.1) rotate(0deg) !important;
    box-shadow:
        0 20px 60px rgba(0, 120, 200, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.25);
}

.polaroid-inner {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 2px;
}

.polaroid-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}

.polaroid:hover .polaroid-inner img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.15);
}

.polaroid-caption {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: #444;
    margin-top: 8px;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Organic rotations — keep the scattered feel */
.polaroid-1 { transform: rotate(-6deg); }
.polaroid-2 { transform: rotate(3.5deg); margin-top: -15px; }
.polaroid-3 { transform: rotate(-2.5deg); margin-top: 10px; }
.polaroid-4 { transform: rotate(3deg); }
.polaroid-5 { transform: rotate(-5deg); margin-top: 20px; }
.polaroid-6 { transform: rotate(4.5deg); margin-top: -10px; }

@media (max-width: 991px) {
    .polaroid-stack {
        max-width: 700px;
        gap: 1.5rem 2rem;
    }
    .polaroid-inner {
        width: 160px; height: 160px;
    }
    .polaroid { padding: 8px 8px 30px 8px; }
}

@media (max-width: 600px) {
    .polaroid-stack {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    .polaroid {
        transform: rotate(0deg) !important;
        margin-top: 0 !important;
    }
    .polaroid-inner { width: 240px; height: 240px; }
}

/* --- Water Caustic Overlay (Hero) --- */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 180, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(91, 138, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 220, 255, 0.04) 0%, transparent 40%);
    animation: waterCaustic 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

@keyframes waterCaustic {
    0% { 
        opacity: 0.4;
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        opacity: 0.7;
        background-position: 30% 20%, 70% 80%, 40% 60%;
    }
    100% { 
        opacity: 0.5;
        background-position: 60% 40%, 40% 60%, 60% 30%;
    }
}

/* --- Water Ripple Effect on Hero BG --- */
.hero-bg {
    animation: heroWaterShift 20s ease-in-out infinite alternate;
}

@keyframes heroWaterShift {
    0% { filter: brightness(0.28) saturate(0.7) hue-rotate(0deg); }
    50% { filter: brightness(0.32) saturate(0.8) hue-rotate(5deg); }
    100% { filter: brightness(0.28) saturate(0.7) hue-rotate(-3deg); }
}

/* --- Accent color override: more pool-like cyan-blues --- */
.hero-gradient {
    background:
        linear-gradient(180deg, rgba(8,9,14,0.5) 0%, rgba(0,30,60,0.1) 40%, rgba(8,9,14,0.85) 100%),
        linear-gradient(90deg, rgba(8,9,14,0.7) 0%, transparent 60%) !important;
}

/* --- Swimming Ripple Line on Marquee --- */
.marquee-strip {
    position: relative;
    overflow: hidden;
}

.marquee-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.06), transparent);
    animation: marqueeShimmer 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes marqueeShimmer {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* --- Entrance Ripple on Service Cards --- */
.section-servicios .service-card:hover {
    box-shadow: 
        0 20px 60px rgba(0, 180, 255, 0.08),
        0 0 0 1px rgba(0, 200, 255, 0.15),
        inset 0 0 30px rgba(0, 200, 255, 0.03);
}

/* --- Water Wave on Scroll Cue --- */
.scroll-line {
    background: linear-gradient(180deg, rgba(0, 200, 255, 0.8), rgba(91, 138, 255, 0.3));
}

/* --- Pool-Blue Glowing Buttons --- */
.hero .btn-magnetic:hover,
.section-cta .btn-magnetic:hover {
    box-shadow: 
        0 20px 50px rgba(0, 180, 255, 0.25),
        0 0 15px rgba(0, 200, 255, 0.15);
}

/* --- Ambient Water Glow on Sections --- */
.section-lugar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: waterGlow 10s ease-in-out infinite alternate;
}

@keyframes waterGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
    100% { opacity: 0.6; transform: translateX(-50%) scale(0.95); }
}

/* --- CTA Badge colors consolidated above in main CTA section --- */

/* --- Water Reflection on Gallery Main --- */
.gallery-main {
    position: relative;
}

.gallery-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent, rgba(0, 120, 200, 0.1));
    pointer-events: none;
    border-radius: 0 0 20px 20px;
    animation: waterReflectionPulse 4s ease-in-out infinite alternate;
}

@keyframes waterReflectionPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* --- Wave Divider Enhancement --- */
.philosophy-divider {
    position: relative;
}

.philosophy-divider .divider-text {
    position: relative;
}

.philosophy-divider .divider-text::before,
.philosophy-divider .divider-text::after {
    content: '〰';
    font-size: 0.8em;
    opacity: 0.3;
    color: var(--accent);
    padding: 0 0.5rem;
}

/* --- Pool-themed Evento Cards Icon Pulse --- */
.evento-icon {
    position: relative;
}

.evento-card:hover .evento-icon {
    animation: iconSplash 0.6s ease-out;
}

@keyframes iconSplash {
    0% { transform: scale(1); }
    30% { transform: scale(1.3); }
    50% { transform: scale(0.95); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* --- Instalacion items water hover --- */
.section-instalaciones .instalacion-item:hover {
    border-color: rgba(0, 200, 255, 0.4);
    background: rgba(0, 200, 255, 0.03);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.06);
}

/* --- Footer wave top --- */
footer {
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 180, 255, 0.4) 20%, 
        rgba(91, 138, 255, 0.6) 50%, 
        rgba(0, 180, 255, 0.4) 80%, 
        transparent 100%);
    animation: footerWave 4s ease-in-out infinite alternate;
}

@keyframes footerWave {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* --- Ticket Modal water accent --- */
.ticket-modal .ticket-modal-content {
    border: 1px solid rgba(0, 180, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 120, 200, 0.15);
}

/* --- WhatsApp Button Splash --- */
.btn-magnetic.btn-whatsapp:hover {
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.25), 0 0 15px rgba(37, 211, 102, 0.1);
}

/* --- Price Badge Water Glow --- */
.section-instalaciones .precio-badge {
    border-color: rgba(0, 180, 255, 0.3);
}

.section-instalaciones .precio-badge:hover {
    box-shadow: 0 0 60px rgba(0, 180, 255, 0.12);
    border-color: rgba(0, 200, 255, 0.5);
}

/* --- Exp Image Landscape Aspect for Pool Photos --- */
.exp-image img {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 16px;
}

.gallery-main img {
    aspect-ratio: 4 / 3;
    height: auto;
    max-height: 550px;
    object-fit: cover;
}