:root {
  --primary: #6a348e;      /* META Official Purple */
  --primary-dark: #4b2365;
  --primary-glow: rgba(106, 52, 142, 0.5);
  --secondary: #8b5cf6;    /* Vibrant Violet */
  --dark-bg: #2a113a;      /* Sleek dark purple */
  --dark-card: #3b1850;
  --light-bg: #fdfbff;
  --white: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --danger: #ef4444;
  --success: #10b981;
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark-bg);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.2rem, 8vw, 4.5rem); margin-bottom: 1.5rem; }
h2.section-title { font-size: clamp(1.8rem, 6vw, 3.5rem); }
h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; }
strong { color: var(--dark-bg); font-weight: 600; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-alt {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTAINERS */
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-inline: auto; }

/* LOGO FIXES */
.logo-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}
.logo-wrapper-footer {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.logo {
  height: 40px; width: auto; object-fit: contain; mix-blend-mode: multiply;
}
.footer-logo {
  width: 180px; height: auto; border-radius: 16px; object-fit: contain; box-shadow: 0 10px 25px rgba(0,0,0,0.2); display: block; border: 2px solid rgba(255,255,255,0.05);
}

/* NAVBAR */
#header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.5rem 0; transition: var(--transition);
}
#header.scrolled {
  padding: 0.8rem 0; background: var(--glass-bg); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.navbar { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a.hover-underline {
  text-decoration: none; color: var(--text-main); font-weight: 500; font-family: var(--font-display); position: relative;
}
.nav-links a.hover-underline::after {
  content: ''; position: absolute; width: 0%; height: 2px; bottom: -4px; left: 0;
  background: var(--primary); transition: width 0.3s ease;
}
.nav-links a.hover-underline:hover::after { width: 100%; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 100px; font-family: var(--font-display);
  font-weight: 600; font-size: 1.1rem; text-decoration: none; cursor: pointer;
  border: none; transition: var(--transition);
}
.btn-nav-cta { padding: 0.7rem 1.5rem; background: var(--dark-bg); color: var(--white); }
.btn-nav-cta:hover { background: var(--primary); box-shadow: 0 4px 15px var(--primary-glow); transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); box-shadow: 0 10px 25px -5px var(--primary-glow); }
.btn-secondary { background: var(--white); color: var(--dark-bg); border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-club { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); padding: 1.2rem 2.5rem; font-size: 1.2rem; box-shadow: 0 10px 20px var(--primary-glow); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); font-size: 1.2rem; padding: 1.2rem 3rem; margin-top: 2rem; }

/* ANIMATIONS */
.pulse-hover:hover { animation: pulse 1s infinite; }
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(106, 52, 142, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(106, 52, 142, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(106, 52, 142, 0); }
}
.glowing-btn:hover { box-shadow: 0 0 20px #25D366, 0 0 40px #25D366!important; transform: translateY(-3px); }
.tech-tilt { transition: transform 0.4s ease, box-shadow 0.4s ease; transform-style: preserve-3d; }
.tech-tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale3d(1.02, 1.02, 1.02);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.05), -20px -20px 60px rgba(255,255,255,0.8);
}

/* HERO SECTION */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 10rem 0 6rem; position: relative; overflow: hidden; }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(100px); z-index: -1; opacity: 0.5; animation: floatOrb 10s ease-in-out infinite alternate; }
.orb-1 { width: 500px; height: 500px; background: rgba(106, 52, 142, 0.2); top: -10%; left: -10%; }
.orb-2 { width: 400px; height: 400px; background: rgba(106, 52, 142, 0.15); bottom: 10%; right: -5%; animation-delay: -5s; }
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, 50px) scale(1.1); } }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.badge-tech {
  display: inline-block; padding: 0.5rem 1.2rem; background: var(--white); border: 1px solid rgba(106, 52, 142, 0.2);
  color: var(--primary); border-radius: 100px; font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; box-shadow: 0 4px 10px rgba(106, 52, 142, 0.1);
}
.hero-description { margin: 1.5rem 0 2.5rem; }
.hero-highlight { font-size: 1.7rem; font-weight: 800; color: var(--dark-bg); line-height: 1.3; margin-bottom: 0.8rem; font-family: var(--font-display); letter-spacing: -0.02em; }
.hero-subtext { font-size: 1.15rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }
.hero-video-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.video-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  font-family: var(--font-display);
}
.video-arrow {
  color: var(--primary);
  width: 36px;
  height: 36px;
}
.desktop-arrow {
  display: block;
  animation: bounceX 2s infinite;
}
.mobile-arrow {
  display: none;
}

@keyframes bounceX {
  0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(5px); }
}

@keyframes bounceYdown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(10px); }
  60% { transform: translateY(5px); }
}
.video-glass-container {
  background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px; padding: 1.5rem; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1); position: relative;
}
.video-glass-container::before {
  content: ''; position: absolute; inset: -2px; border-radius: 26px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  z-index: -1; opacity: 0.5; filter: blur(10px);
}
.styled-video { width: 100%; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); background: var(--dark-bg); aspect-ratio: 16/9; object-fit: cover; }

/* SOBRE & DIFERENCIAIS */
.about-section { padding: 8rem 0; background: var(--white); position: relative; }
.impact-stats { display: flex; justify-content: center; gap: 3rem; margin-bottom: 2rem; flex-wrap: wrap; }
.impact-card { text-align: center; }
.impact-number { font-size: 3rem; font-family: var(--font-display); font-weight: 800; line-height: 1; margin-bottom: 0.5rem; }
.impact-label { font-size: 1rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.reach-text { text-align: center; max-width: 800px; margin: 0 auto 5rem; font-weight: 500; }


/* SERVICES */
.title-highlight {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 2.5rem;
    border-radius: 100px;
    display: inline-block;
    font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
    box-shadow: 0 10px 25px var(--primary-glow);
    margin-bottom: 1.5rem;
}
.services { padding: 8rem 0; background: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { background: var(--white); padding: 3rem; border-radius: 20px; position: relative; border: 1px solid rgba(0,0,0,0.03); z-index: 1; overflow: hidden; }
.card-glow { position: absolute; width: 150px; height: 150px; background: var(--primary); filter: blur(60px); opacity: 0; border-radius: 50%; top: -50px; right: -50px; z-index: -1; transition: opacity 0.5s ease; }
.service-card:hover .card-glow { opacity: 0.15; }
.icon-box { width: 70px; height: 70px; background: var(--light-bg); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.05); color: var(--primary); transition: transform 0.4s ease; }
.service-card:hover .icon-box { transform: translateY(-5px) scale(1.1); color: var(--primary-dark); }
.service-card h3 { font-size: 1.8rem; font-weight: 800; font-family: var(--font-display); line-height: 1.3; margin: 0; }

/* JORNADA DO CLIENTE */
.journey-section { padding: 4rem 0 8rem; background: var(--light-bg); }
.journey-container { text-align: center; max-width: 800px; margin: 0 auto; }
.journey-image { width: 100%; border-radius: 24px; box-shadow: 0 20px 50px rgba(106, 52, 142, 0.15); border: 2px solid rgba(106, 52, 142, 0.1); }

/* META CLUB */
.club-section { padding: 10rem 0; background: var(--primary); color: var(--white); position: relative; }
.circuit-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 30px 30px; opacity: 0.2; }
.club-container { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; position: relative; z-index: 2; }
.club-badge { display: inline-block; padding: 0.6rem 1.5rem; background: rgba(255, 255, 255, 0.15); color: var(--white); border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.3); margin-bottom: 2rem; font-family: var(--font-display); font-weight: 700; }
.club-logo-title { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); line-height: 1.1; margin-bottom: 2rem; }
.club-main-text { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 500; line-height: 1.4; color: rgba(255, 255, 255, 0.95); margin-bottom: 3rem; }
.highlight-box { background: rgba(255,255,255,0.03); border-left: 4px solid var(--primary); padding: 1.5rem; border-radius: 0 12px 12px 0; margin: 2.5rem 0; }
.highlight-box p { color: var(--white); margin: 0; font-weight: 500; font-family: var(--font-display); font-size: 1.25rem; }
.club-images { perspective: 1000px; display: flex; justify-content: center; }
.single-image-wrapper { position: relative; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); border: 2px solid rgba(255,255,255,0.1); overflow: hidden; max-width: 450px; margin: 0 auto; aspect-ratio: 4/5; }
.club-img-single { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.6s ease; }
.single-image-wrapper:hover .club-img-single { transform: scale(1.05); }

/* GALLERY OVERLAY ANIMATION */
.gallery { padding: 8rem 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item { position: relative; border-radius: 20px; overflow: hidden; border: 4px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.08); aspect-ratio: 4/5; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42, 17, 58, 0.9) 0%, transparent 60%); z-index: 1; display: flex; align-items: flex-end; padding: 2rem; opacity: 0; transition: opacity 0.4s ease; }
.image-overlay span { color: var(--white); font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; transform: translateY(20px); transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .image-overlay { opacity: 1; }
.gallery-item:hover .image-overlay span { transform: translateY(0); }

/* TESTIMONIALS SECTION */
.testimonials-section { padding: 8rem 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: var(--light-bg); border: 1px solid rgba(0,0,0,0.05); padding: 2.5rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.4s ease; display: flex; flex-direction: column; gap: 1rem; }
.testimonial-card:hover { transform: translateY(-10px); }
.testimony-stars { color: #f59e0b; display: flex; gap: 0.2rem; fill: currentColor; }
.testimony-stars svg { width: 18px; height: 18px; }
.testimony-text { font-style: italic; color: var(--text-main); font-size: 1.1rem; line-height: 1.6; flex-grow: 1; }
.testimony-author { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; font-weight: bold; font-family: var(--font-display); font-size: 1.2rem; }
.author-info h4 { font-size: 1rem; margin: 0; color: var(--dark-bg); font-family: var(--font-display); font-weight: 700; }
.author-info p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* CONTACT FORM SECTION */
.contact-form-section { padding: 6rem 0 10rem; background: var(--light-bg); position: relative; z-index: 2; }
.contact-container { max-width: 800px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.95rem; font-weight: 600; color: var(--text-main); }
.form-control { padding: 1rem; border: 1px solid rgba(0,0,0,0.1); border-radius: 12px; font-family: var(--font-body); font-size: 1rem; transition: all 0.3s; background: #fcfaff; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(106, 52, 142, 0.1); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; padding: 1.2rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); border: none; border-radius: 12px; font-size: 1.1rem; font-family: var(--font-display); font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; justify-content: center; align-items: center; gap: 0.5rem; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 25px var(--primary-glow); }

/* FAQ SECTION */
.faq-section { padding: 8rem 0; background: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: var(--white); border: none; cursor: pointer; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--dark-bg); text-align: left; transition: background 0.3s; }
.faq-question:hover { background: #f1f5f9; }
.faq-icon { transition: transform 0.3s ease; color: var(--primary); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: #fcfaff; }
.faq-item.active .faq-answer { max-height: 300px; padding: 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); }

/* FOOTER AND CTA */
.glass-cta { background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8)); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 30px; padding: 5rem 2rem; text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,0.05); margin-bottom: -100px; position: relative; z-index: 10; max-width: 900px; }
.glass-cta h2 { margin-bottom: 1rem; }
footer { background: var(--dark-bg); padding-top: 15rem; color: var(--white); position: relative; z-index: 1; }
.footer-content { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; padding-bottom: 4rem; }
.brand-slogan { font-style: italic; color: #94a3b8; font-size: 1.05rem; line-height: 1.6; margin-top: 1rem; }
.social-links-brand { display: flex; gap: 1rem; margin-top: 2rem; }
.social-icon-btn { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background: var(--dark-card); color: white; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.05); }
.social-icon-btn svg { width: 22px; height: 22px; fill: white; transition: fill 0.3s ease; }
.instagram-btn:hover { background: #E1306C; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(225, 48, 108, 0.4); }
.linkedin-btn:hover { background: #0077b5; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4); }
.whatsapp-btn:hover { background: #25D366; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); }

.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { color: var(--white); margin-bottom: 1.5rem; font-family: var(--font-display); }
.footer-col a, .footer-col p { display: flex; align-items: center; gap: 0.5rem; color: #94a3b8; text-decoration: none; margin-bottom: 0.8rem; transition: all 0.3s; font-size: 1rem; line-height: 1.4; }
.footer-col a:hover { color: var(--white); transform: translateX(5px); }
.contact-col p i { color: var(--primary); width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 2rem 0; text-align: center; }
.footer-bottom p { color: #64748b; margin: 0; font-size: 0.95rem; }

/* MAP SECTION */
.location-section { padding: 5rem 0 8rem; background: var(--light-bg); position: relative; }
.map-container { width: 90%; max-width: 1200px; margin: 0 auto; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border: 4px solid var(--white); }

/* COOKIE BANNER */
.cookie-banner { position: fixed; bottom: -120%; left: 0; width: 100%; background: var(--dark-bg); z-index: 10000; padding: 1.5rem; display: flex; justify-content: center; align-items: center; box-shadow: 0 -10px 40px rgba(0,0,0,0.2); transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cookie-banner.show { bottom: 0; }
.cookie-content { display: flex; flex-direction: row; justify-content: space-between; align-items: center; max-width: 1200px; width: 100%; gap: 2rem; }
.cookie-content p { margin: 0; color: #cbd5e1; font-size: 0.95rem; line-height: 1.5; }
.cookie-content a { color: var(--white); text-decoration: underline; font-weight: 600; }
.btn-cookie { white-space: nowrap; padding: 0.8rem 1.5rem; border-radius: 100px; border: none; background: var(--primary); color: white; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.btn-cookie:hover { background: var(--primary-dark); transform: scale(1.05); }

/* FLOATING WPP */
.floating-socials { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; }
.wpp-float { width: 60px; height: 60px; background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); transition: transform 0.3s ease; animation: bounce 2s infinite; }
.wpp-float:hover { transform: scale(1.1); animation: none; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* MOBILE MENU & RESPONSIVE */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--dark-bg); cursor: pointer; }
@media (max-width: 1024px) {
  .hero-content, .club-container { grid-template-columns: 1fr; text-align: center; }
  .hero-video-cta {
    justify-content: center;
    flex-direction: column;
    margin-top: 3rem;
  }
  .desktop-arrow { display: none; }
  .mobile-arrow { 
    display: block; 
    animation: bounceYdown 2s infinite; 
  }

  .footer-content { grid-template-columns: 1fr; }
  .club-images { margin-top: 5rem; height: 400px; }
  .highlight-box { text-align: left; border-radius: 12px; border-left: none; border-top: 4px solid var(--primary); }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .hero-highlight { font-size: 1.5rem; }
  .hero-subtext { font-size: 1.1rem; }
  .video-title { font-size: 1.8rem; }
  .hero { padding: 8rem 0 4rem; }
  .about-section, .services, .journey-section, .gallery, .testimonials-section, .faq-section, .club-section, .contact-form-section, .location-section { padding: 4rem 0; }
  .mobile-menu-btn { display: block; }
  .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 2rem; gap: 2rem; box-shadow: 0 20px 30px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transform: translateY(-20px); transition: all 0.4s ease; }
  .nav-links.active { opacity: 1; pointer-events: all; transform: translateY(0); }
  .footer-links-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-container { padding: 2rem 1.5rem; }
  .cookie-content { flex-direction: column; text-align: center; gap: 1rem; }
  .glass-cta { padding: 3rem 1.5rem; margin-bottom: -120px; }
  footer { padding-top: 12rem; }
}

/* SCROLL REVEAL ANIMATIONS */
.reveal-up { opacity: 0; transform: translateY(50px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.is-revealed { opacity: 1; transform: translate(0) scale(1); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
