/* ============================================================
   ACADEMIA UP — STYLE.CSS
   ============================================================ */

:root {
  --primary: #16a34a;
  --primary-dark: #0d7a37;
  --accent: #22c55e;
  --ink: #000000;
  --ink-soft: #0a0a0a;
  --ink-card: #121212;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-faint: rgba(255, 255, 255, 0.4);
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius: 1.25rem;
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.25);
  --shadow-glow-lg: 0 0 80px rgba(34, 197, 94, 0.3);
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--ink);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background-color: var(--primary); color: var(--white); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 999px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============== LAYOUT HELPERS ============== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 24px; max-width: var(--container); margin: 0 auto; }
.section-soft { background: rgba(20,20,20, 0.4); }
@media (min-width: 768px) { .section { padding: 128px 40px; } }
@media (min-width: 1024px) { .section { padding: 128px 80px; } }

.text-gradient {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass {
  background: rgba(20,20,20, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
}
.glass-strong {
  background: rgba(0,0,0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-glow-lg); }
.btn-primary:hover { background: var(--accent); transform: translateY(-3px) scale(1.03); box-shadow: 0 0 50px rgba(34,197,94,.45); }
.btn-primary:active { transform: translateY(-1px) scale(1); }
.btn-ghost { color: var(--white); border: 1px solid var(--border-soft); }
.btn-ghost:hover { border-color: rgba(34, 197, 94, 0.5); transform: translateY(-3px) scale(1.03); box-shadow: 0 0 30px rgba(34,197,94,.15); }
.btn-ghost:active { transform: translateY(-1px) scale(1); }
.btn-small { padding: 10px 24px; font-size: 0.85rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--accent); flex-shrink: 0; }

.hero-inner .eyebrow {
  max-width: 100%;
  font-size: clamp(0.5rem, 2.2vw, 0.8rem);
  letter-spacing: clamp(0.02em, 0.5vw, 0.2em);
  white-space: nowrap;
}

.section-heading { margin-bottom: 56px; max-width: 640px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.wide { max-width: 820px; }
.section-heading h2 { margin-top: 16px; font-family: "Unbounded", sans-serif; font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; }
.section-heading.wide h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.section-heading p { margin-top: 20px; color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============== NAVBAR ============== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 999; height: 80px; transition: all 0.4s ease; border-bottom: 1px solid transparent; }
.navbar.scrolled {
  background: rgba(0,0,0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, 0.8);
}
.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 40px; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 48px; } }
@media (min-width: 1280px) { .nav-inner { padding: 0 80px; } }

.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; white-space: nowrap; font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.logo-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.logo span { color: var(--accent); }

.nav-links { display: none; align-items: center; gap: 26px; margin-left: 48px; }
.nav-links a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
  padding-bottom: 4px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; flex-shrink: 0; white-space: nowrap; margin-left: 32px; position: relative; }
.nav-cta::before {
  content: ""; position: absolute; left: -20px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 22px; background: var(--border-soft);
}
.nav-toggle { display: flex; color: var(--white); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (min-width: 1280px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0, 0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; visibility: hidden; transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 1.6rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-close { position: absolute; top: 28px; right: 28px; color: var(--white); }
.mobile-close svg { width: 30px; height: 30px; }

.section-photo-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.section-photo-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.14; filter: grayscale(15%) contrast(1.1); }
.section-photo-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 50%, transparent 0%, var(--ink) 88%),
    linear-gradient(to bottom, var(--ink) 0%, transparent 18%, transparent 82%, var(--ink) 100%);
}
.section-divider {
  height: 1px; max-width: 200px; margin: 0 auto;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.section-glow { position: relative; overflow: hidden; }
.section-glow::before {
  content: ""; position: absolute; z-index: 0;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.14) 0%, rgba(34,197,94,0) 70%);
  filter: blur(50px); pointer-events: none;
}
.section-glow-right::before { top: 5%; right: -160px; }
.section-glow-left::before { bottom: 5%; left: -160px; }
.section-glow > *:not(.section-photo-bg) { position: relative; z-index: 1; }

/* ============== HERO ============== */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; align-items: center; overflow: hidden; padding-bottom: 40px; }
@media (min-width: 1024px) { .hero { flex-direction: row; padding-bottom: 0; } }
.hero-video-card { order: 2; }
.hero-inner { order: 1; }
@media (min-width: 1024px) { .hero-video-card, .hero-inner { order: 0; } }
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay-1 {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.85) 60%, var(--ink) 100%);
}
.hero-overlay-2 {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(to right, var(--ink), rgba(0,0,0,.4) 60%, transparent);
}
.hero-side-panel {
  display: none; position: absolute; inset: 0; left: 50%; z-index: -3; pointer-events: none;
  background: linear-gradient(to right, transparent 0%, rgba(10,10,10,.5) 35%, rgba(5,5,5,.85) 65%, #000 100%);
}
@media (min-width: 1024px) { .hero-side-panel { display: block; } }
@media (min-width: 1600px) { .hero-side-panel { left: 42%; } }

.hero-video-glow {
  display: none; position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 280px; height: 420px; z-index: -2;
  background: radial-gradient(ellipse at center, rgba(34,197,94,.08) 0%, rgba(34,197,94,0) 72%);
  filter: blur(55px);
}
@media (min-width: 1024px) { .hero-video-glow { display: block; } }
@media (min-width: 1600px) { .hero-video-glow { width: 380px; height: 560px; right: 12%; } }

.hero-video-card {
  display: block; position: relative; margin: 32px auto 0;
  width: 230px; max-height: 52vh; aspect-ratio: 9/16; overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6);
  -webkit-mask-image: radial-gradient(ellipse 82% 85% at 50% 50%, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 82% 85% at 50% 50%, #000 60%, transparent 100%);
  z-index: 1;
}
.hero-video-card video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, transparent 30%, transparent 55%, rgba(0,0,0,.7) 100%),
              rgba(0,0,0,.22);
}
@media (min-width: 480px) { .hero-video-card { width: 260px; } }
@media (min-width: 1024px) {
  .hero-video-card {
    position: absolute; right: 4%; top: 50%; transform: translateY(-50%); margin: 0;
    width: 250px; max-height: min(58vh, 480px); z-index: -1;
  }
}
@media (min-width: 1600px) { .hero-video-card { width: 360px; right: 10%; max-height: min(72vh, 620px); } }

.hero-inner { width: 100%; padding: clamp(96px, 18vh, 128px) 24px 40px; max-width: var(--container); margin: 0 auto; }
@media (min-width: 768px) { .hero-inner { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1024px) { .hero-inner { padding-left: 80px; padding-right: 80px; } }

.hero h1 { margin-top: 24px; max-width: 640px; font-family: "Sora", sans-serif; font-size: clamp(2rem, 4.4vw, 3.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; text-transform: uppercase; }
@media (min-width: 1600px) { .hero h1 { max-width: 720px; font-size: clamp(2.4rem, 5vw, 3.8rem); } }
.hero p.lead { margin-top: 24px; max-width: 560px; color: var(--text-muted); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.7; }
.hero-actions { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-stats {
  margin-top: 64px; max-width: 480px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--border-soft); padding-top: 32px;
}
.hero-stats .value { font-size: 1.6rem; font-weight: 800; }
.hero-stats .label { margin-top: 4px; font-size: 0.8rem; color: var(--text-faint); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--text-faint);
  animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============== ABOUT ============== */
.about-grid { display: grid; gap: 64px; align-items: center; }
.about-grid .section-heading h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-media { position: relative; order: 2; }
.about-grid > div:not(.about-media) { order: 1; }
@media (min-width: 1024px) { .about-media, .about-grid > div:not(.about-media) { order: 0; } }
.about-photo { position: relative; aspect-ratio: 9/16; max-width: 240px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); background: var(--ink-soft); }
@media (min-width: 480px) { .about-photo { max-width: 280px; } }
@media (min-width: 1024px) { .about-photo { max-width: 360px; margin: 0; } }
.about-photo img, .about-photo video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 50%); }
.about-badge { display: none; position: absolute; bottom: -32px; right: -16px; width: 220px; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-card); }
.about-badge .num { font-size: 1.8rem; font-weight: 800; color: var(--accent); }
.about-badge p { margin-top: 4px; font-size: 0.85rem; color: var(--text-muted); }
@media (min-width: 768px) { .about-badge { display: block; } }

.feature-grid { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-card {
  border-radius: var(--radius); border: 1px solid var(--border-soft);
  background: rgba(20, 27, 46, 0.5); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 20px; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(34, 197, 94, 0.35); box-shadow: var(--shadow-glow); }
.feature-card svg { width: 28px; height: 28px; color: var(--accent); transition: transform 0.35s ease; }
.feature-card:hover svg { transform: scale(1.15); }
.feature-card p.title { margin-top: 16px; font-weight: 600; }
.feature-card p.desc { margin-top: 6px; font-size: 0.85rem; color: var(--text-faint); }

/* ============== EVOLUTION LINE ============== */
.evolution-line { width: 100%; overflow: hidden; line-height: 0; }
.evolution-line svg { width: 100%; height: 64px; }
.evolution-line path { stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 1.8s ease-in-out; }
.evolution-line.is-visible path { stroke-dashoffset: 0; }

/* ============== MODALITIES ============== */
.modalities-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .modalities-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .modalities-grid { grid-template-columns: repeat(3, 1fr); } }

.modality-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
  padding: 32px; transition: all 0.45s ease;
}
.modality-card:hover { transform: translateY(-8px) scale(1.015); border-color: rgba(34, 197, 94, 0.35); box-shadow: var(--shadow-glow); }
.modality-card .icon-box {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: rgba(22, 163, 74, 0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.45s ease;
}
.modality-card:hover .icon-box { background: var(--primary); color: var(--ink); transform: rotate(6deg); }
.modality-card .icon-box svg { width: 28px; height: 28px; }
.modality-card h3 { margin-top: 24px; font-family: "Unbounded", sans-serif; font-size: 1.2rem; font-weight: 700; }
.modality-card p { margin-top: 10px; font-size: 0.9rem; line-height: 1.6; color: var(--text-faint); }
.modality-card .bar { margin-top: 24px; height: 1px; width: 100%; background: var(--border-soft); position: relative; overflow: hidden; }
.modality-card .bar::after { content: ""; position: absolute; inset: 0; width: 0; background: var(--accent); transition: width 0.45s ease; }
.modality-card:hover .bar::after { width: 100%; }

/* ============== HORÁRIO DE FUNCIONAMENTO ============== */
.hours-wrap {
  max-width: 560px; margin: 0 auto;
  border-radius: var(--radius); border: 1px solid var(--border-soft);
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
  overflow: hidden;
}
.hours-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--border-soft);
  transition: background 0.25s ease;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(34,197,94,0.05); }
.hours-day { font-weight: 600; color: rgba(255,255,255,0.85); }
.hours-time { font-weight: 700; color: var(--accent); }

/* ============== CLASSES / AULAS COLETIVAS ============== */
.classes-wrap {
  max-width: 800px; margin: 0 auto; padding: 20px;
  border-radius: var(--radius); border: 1px solid var(--border-soft);
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
}
@media (min-width: 640px) { .classes-wrap { padding: 32px; } }
@media (min-width: 768px) { .classes-wrap { padding: 48px; } }

.hours-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; text-align: center;
  margin-bottom: 24px; padding: 14px; border-radius: var(--radius);
  border: 1px solid var(--border-soft); background: rgba(34,197,94,0.06);
  font-size: 0.85rem; color: var(--text-muted);
}
.hours-bar svg { width: 18px; height: 18px; color: var(--accent); }
.hours-bar strong { color: var(--white); font-weight: 700; }
#hours-close { margin-bottom: 0; margin-top: 24px; }

.hours-weekend {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 16px; font-size: 0.8rem; color: var(--text-faint);
}
@media (min-width: 480px) { .hours-weekend { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; } }
.classes-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.classes-tab {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--border-soft);
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted); transition: all 0.25s ease;
}
.classes-tab:hover { color: var(--white); border-color: rgba(34, 197, 94, 0.4); }
.classes-tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: var(--shadow-glow); }

.classes-panel { display: none; flex-direction: column; gap: 14px; }
.classes-panel.active { display: flex; }

.class-row {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 16px 20px;
}
.class-row.bike { border-style: dashed; }
.class-time { font-weight: 700; color: var(--accent); min-width: 120px; }
.class-badge {
  background: var(--primary); color: var(--white); font-size: 0.7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.class-icon { display: flex; align-items: center; justify-content: center; color: var(--accent); }
.class-icon svg { width: 22px; height: 22px; }
.class-name { font-weight: 700; margin-left: auto; }

@media (min-width: 640px) {
  .class-time { min-width: 140px; }
}

/* ============== STRUCTURE GALLERY ============== */
.gallery-carousel { display: flex; align-items: center; gap: 12px; }
.gallery-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
  padding: 4px; -ms-overflow-style: none; scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .gallery-track { gap: 20px; } }
.gallery-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-soft); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.gallery-arrow:hover { border-color: rgba(34,197,94,0.5); background: rgba(34,197,94,0.1); }
.gallery-arrow svg { width: 20px; height: 20px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  flex: 0 0 220px; height: 280px; scroll-snap-align: start;
}
@media (min-width: 768px) { .gallery-item { flex-basis: 260px; height: 320px; } }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent 55%);
  opacity: 0.6; transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 0.9; }
.gallery-item .caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  font-size: 0.85rem; font-weight: 500;
  opacity: 0; transform: translateY(10px); transition: all 0.4s ease;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

.gallery-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  border: 1px dashed var(--border-soft);
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
}
.gallery-soon i, .gallery-soon svg { width: 32px; height: 32px; color: var(--text-faint); }
.gallery-soon .soon-label { font-size: 0.85rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }
.gallery-soon .caption {
  position: static; opacity: 1; transform: none; color: var(--text-faint); font-size: 0.8rem; text-align: center;
}

/* ============== PLANS ============== */
.plans-wrap { position: relative; }
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .plans-grid { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.plan-card {
  position: relative; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--border-soft); background: rgba(20, 27, 46, 0.5);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.plan-card:hover { transform: translateY(-6px); border-color: rgba(34,197,94,0.3); box-shadow: var(--shadow-glow); }
.plan-card.highlight {
  border: 2px solid var(--accent);
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
  box-shadow: var(--shadow-glow-lg);
}
@media (min-width: 1024px) { .plan-card.highlight { transform: scale(1.06); padding: 48px 32px; } }
.plan-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--ink);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-glow); white-space: nowrap;
}
.plan-badge svg { width: 14px; height: 14px; }
.plan-card h3 { color: rgba(255,255,255,0.8); font-family: "Unbounded", sans-serif; font-size: 1.1rem; font-weight: 600; }
.plan-price { margin-top: 12px; display: flex; align-items: flex-end; gap: 4px; }
.plan-price .amount { font-size: 2.4rem; font-weight: 800; }
.plan-price .period { color: var(--text-faint); margin-bottom: 4px; }
.plan-card .desc { margin-top: 16px; font-size: 0.9rem; color: var(--text-faint); line-height: 1.6; }
.plan-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.plan-features svg { width: 16px; height: 16px; color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.plan-btn {
  margin-top: 32px; display: block; width: 100%; text-align: center; padding: 14px;
  border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.15); transition: all 0.3s ease;
}
.plan-btn:hover { border-color: rgba(34,197,94,0.5); background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.plan-btn.filled { border: none; background: var(--accent); color: var(--ink); box-shadow: var(--shadow-glow); }
.plan-btn.filled:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); box-shadow: 0 0 40px rgba(34,197,94,.4); }

/* ============== BENEFITS ============== */
.benefits-box { border-radius: var(--radius); padding: 40px 32px; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(6, 1fr); } }
.benefit-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.benefit-item .icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(22,163,74,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.benefit-item:hover .icon-circle { background: var(--primary); color: var(--white); transform: scale(1.1); }
.benefit-item .icon-circle svg { width: 22px; height: 22px; }
.benefit-item p { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7); }

/* ============== TESTIMONIALS ============== */
.testi-wrap { max-width: 720px; margin: 0 auto; text-align: center; }
.testi-wrap > svg { width: 40px; height: 40px; color: rgba(34,197,94,0.3); margin: 0 auto; }
.testi-slide-area { position: relative; margin-top: 24px; min-height: 260px; }
.testi-slide {
  position: absolute; inset: 0; display: none; flex-direction: column; align-items: center;
  opacity: 0; transition: opacity 0.5s ease;
}
.testi-slide.active { display: flex; opacity: 1; }
.testi-stars { display: flex; gap: 4px; }
.testi-stars svg { width: 20px; height: 20px; color: var(--accent); fill: var(--accent); }
.testi-quote { margin-top: 24px; font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.85); }
.testi-person { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(34,197,94,0.4);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--ink); font-weight: 800; font-size: 1.1rem;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-person .name { font-weight: 600; text-align: left; }
.testi-person .role { font-size: 0.85rem; color: var(--text-faint); text-align: left; }

.testi-controls { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.testi-arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.testi-arrow:hover { border-color: rgba(34,197,94,0.5); color: var(--accent); }
.testi-arrow svg { width: 18px; height: 18px; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { height: 8px; width: 8px; border-radius: 999px; background: rgba(255,255,255,0.2); transition: all 0.3s ease; }
.testi-dot.active { width: 24px; background: var(--accent); }

/* ============== FAQ ============== */
.faq-list {
  max-width: 720px; margin: 0 auto; border-radius: var(--radius);
  border: 1px solid var(--border-soft); background: rgba(20, 27, 46, 0.4); overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border-soft); padding: 0 24px; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; text-align: left; font-size: 1rem; font-weight: 600;
}
.faq-plus {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(22,163,74,0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease;
}
.faq-plus svg { width: 16px; height: 16px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 24px; padding-right: 40px; font-size: 0.9rem; line-height: 1.7; color: var(--text-faint); }

/* ============== CONTACT ============== */
.contact-grid { position: relative; }
.contact-grid::before, .contact-grid::after {
  content: ""; position: absolute; width: 64px; height: 64px; border: 2px solid var(--accent);
}
.contact-grid::before { left: -1px; top: -1px; border-right: none; border-bottom: none; border-radius: var(--radius) 0 0 0; }
.contact-grid::after { right: -1px; bottom: -1px; border-left: none; border-top: none; border-radius: 0 0 var(--radius) 0; }

.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 640px; margin: 0 auto;
  padding: 32px; border-radius: var(--radius); border: 1px solid var(--border-soft);
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
}
@media (min-width: 768px) { .contact-grid { padding: 48px; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; border-radius: var(--radius);
  border: 1px solid var(--border-soft); background: rgba(20, 27, 46, 0.5);
  padding: 20px; transition: all 0.3s ease;
}
.contact-card:hover { transform: translateY(-2px); border-color: rgba(34,197,94,0.3); box-shadow: var(--shadow-glow); }
.contact-card .icon-circle {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(22,163,74,0.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card .icon-circle svg { width: 20px; height: 20px; }
.contact-card .icon-circle.logo-circle { overflow: hidden; background: transparent; }
.contact-card .icon-circle.logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.contact-card .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); }
.contact-card .value { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.9); }

.map-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.map-btn { flex: 1 1 180px; padding: 12px 20px; font-size: 0.9rem; border: 1px solid var(--border-soft); }
.map-btn svg { width: 18px; height: 18px; }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-soft); }
.map-frame iframe { width: 100%; height: 220px; border: 0; filter: grayscale(40%) contrast(1.2); }

.contact-form { display: flex; flex-direction: column; border-radius: var(--radius); border: 1px solid var(--border-soft); background: rgba(20, 27, 46, 0.5); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; flex: 1; align-content: start; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.7); }
.form-field input, .form-field select {
  width: 100%; border-radius: 10px; border: 1px solid var(--border-soft);
  background: rgba(0,0,0,0.6); padding: 13px 16px; font-size: 0.9rem; color: var(--white);
  outline: none; transition: border-color 0.2s ease;
}
.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus, .form-field select:focus { border-color: var(--accent); }
.form-field select option { background: var(--ink-soft); }

.form-submit {
  margin-top: 28px; width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; border-radius: 999px; background: var(--primary); font-weight: 600; font-size: 0.9rem;
  box-shadow: var(--shadow-glow); transition: all 0.3s ease;
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); }
.form-submit svg { width: 16px; height: 16px; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { margin-top: 16px; text-align: center; font-size: 0.75rem; color: var(--text-faint); }

.form-success { display: none; min-height: 300px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.form-success.show { display: flex; }
.form-success svg { width: 56px; height: 56px; color: var(--accent); }
.form-success h3 { margin-top: 20px; font-size: 1.3rem; font-weight: 700; }
.form-success p { margin-top: 8px; max-width: 280px; color: var(--text-muted); }

/* ============== FOOTER ============== */
.footer { border-top: 1px solid var(--border-soft); background: rgba(20,20,20, 0.6); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; max-width: var(--container); margin: 0 auto; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); padding: 64px 40px; } }
@media (min-width: 1024px) { .footer-grid { padding: 64px 80px; } }
.footer-about p { margin-top: 16px; max-width: 280px; font-size: 0.9rem; line-height: 1.7; color: var(--text-faint); }
.footer-socials { margin-top: 24px; display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-soft); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.footer-socials a:hover { border-color: rgba(34,197,94,0.4); color: var(--accent); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-title { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); }
.footer-links { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-bottom { border-top: 1px solid var(--border-soft); padding: 24px; text-align: center; font-size: 0.75rem; color: var(--text-faint); }

/* ============== EXPERIMENTAL MODAL ============== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  position: relative; max-width: 420px; width: 100%; text-align: center;
  background: linear-gradient(to bottom, var(--ink-card), var(--ink-soft));
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 40px 32px 32px;
  transform: translateY(16px); transition: transform 0.3s ease;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px; color: var(--text-faint);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all 0.2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.modal-close svg { width: 18px; height: 18px; }
.modal-whatsapp-icon {
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  width: 64px; height: 64px; border-radius: 50%; background: #25d366; color: var(--white);
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.6);
}
.modal-whatsapp-icon svg { width: 32px; height: 32px; }
.modal-card h3 { font-family: "Unbounded", sans-serif; font-size: 1.4rem; font-weight: 700; }
.modal-card p { margin-top: 14px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.modal-whatsapp-btn { margin-top: 24px; width: 100%; }

/* ============== FLOATING BUTTONS ============== */
.float-btn {
  position: fixed; bottom: 24px; z-index: 500; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5); transition: all 0.3s ease;
}
.float-btn:hover { transform: scale(1.08); }

#whatsapp-btn { right: 24px; bottom: 24px; background: #25d366; box-shadow: 0 10px 30px -8px rgba(37,211,102,0.7); }
#whatsapp-btn svg { width: 28px; height: 28px; position: relative; z-index: 1; }
#whatsapp-btn .ping {
  position: absolute; inset: 0; border-radius: 50%; background: #25d366; opacity: 0.4;
  animation: ping 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: 0.4; } 75%, 100% { transform: scale(1.9); opacity: 0; } }

#back-top {
  right: 24px; bottom: 92px; width: 48px; height: 48px; background: var(--primary); box-shadow: var(--shadow-glow);
  opacity: 0; transform: scale(0); pointer-events: none;
}
#back-top.show { opacity: 1; transform: scale(1); pointer-events: auto; }
#back-top svg { width: 20px; height: 20px; }
