/* ═══════════════════════════════════════════════════════
   DESTRAVE SUA VOZ — DESIGN SYSTEM v2
   Premium dark aesthetic · Rebuilt from the ground up
═══════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --ink:         #050505;
  --surface:     #0d0d0d;
  --surface-2:   #131313;
  --surface-3:   #181818;
  --border:      rgba(255,255,255,.07);
  --border-md:   rgba(255,255,255,.12);

  --amber:       #ff9a1f;
  --amber-str:   #ff7000;
  --amber-dim:   rgba(255,154,31,.12);
  --amber-glow:  rgba(255,154,31,.20);

  --w100: rgba(255,255,255,1);
  --w80:  rgba(255,255,255,.80);
  --w60:  rgba(255,255,255,.60);
  --w40:  rgba(255,255,255,.40);
  --w20:  rgba(255,255,255,.20);
  --w08:  rgba(255,255,255,.08);

  /* Legacy aliases (used in JS / older snippets) */
  --bg-main:        #050505;
  --bg-card:        #0d0d0d;
  --bg-card-soft:   #131313;
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,.62);
  --accent:         #ff9a1f;
  --accent-strong:  #ff7000;
  --accent-green:   #fc8f00;
  --radius-xl:      24px;
  --shadow-strong:  0 32px 80px rgba(0,0,0,.90);
  --shadow-soft:    0 20px 52px rgba(0,0,0,.75);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--ink);
  color: var(--w100);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient warmth — fixed top-left glow */
body::before {
  content: '';
  position: fixed;
  top: -25%;
  left: -10%;
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255,110,0,.065) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT UTILITIES ────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 16px;
}

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

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--amber); }

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: .97rem;
  line-height: 1.72;
  color: var(--w60);
}

.center {
  text-align: center;
  margin-top: 36px;
}

.hidden { display: none !important; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #c87c00, #ff9a1f 55%, #ff6500);
  box-shadow: 0 8px 28px rgba(255,154,31,.28);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform;
}
.btn-primary .arrow {
  font-size: 1rem;
  transition: transform .2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(255,154,31,.48);
}
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-primary:active { transform: scale(.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,154,31,.3);
  background: transparent;
  color: var(--w80);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-secondary .arrow { transition: transform .2s ease; }
.btn-secondary:hover {
  border-color: var(--amber);
  background: rgba(255,154,31,.06);
  color: #fff;
}
.btn-secondary:hover .arrow { transform: translateX(3px); }

.btn-full { width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  width: 100%;
  max-width: 1200px;
  margin: 28px auto 44px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #000;
  box-shadow:
    0 40px 100px rgba(0,0,0,.85),
    0 0 0 1px rgba(255,255,255,.05);
}

/* Warm radial inside hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 25%, rgba(255,100,0,.24), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 52px;
  gap: 20px;
}

/* Logo */
.hero-logo { position: relative; display: inline-block; }
.site-logo { width: 200px; max-width: 100%; height: auto; }
.sound-waves { display: none; }

/* Hero panel (glass card) */
.hero-panel {
  position: relative;
  margin-top: 10px;
  padding: 26px 28px;
  border-radius: 20px;
  background: rgba(0,0,0,.80);
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 24px 56px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
/* Shimmer line on panel top */
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,154,31,.35), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.hero-tagline {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--amber);
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.035em;
  color: var(--w100);
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: .92rem;
  line-height: 1.72;
  color: var(--w60);
  max-width: 34rem;
  margin-bottom: 16px;
}

.hero-benefits { display: none; }

.hero-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-badge-label {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--w40);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,154,31,.18);
  font-size: .78rem;
  color: var(--w80);
}
.hero-badge.hero-badge-stack {
  display: grid;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,154,31,.18);
  font-size: .78rem;
  color: var(--w80);
}

.hero-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  width: 56px !important;
  height: 32px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ff9a1f, #ff6500) !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: .02em !important;
  line-height: 1 !important;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.hero-cta-secondary {
  padding: 11px 20px;
  border-radius: 14px;
  font-size: .86rem;
}
.hero-trust {
  font-size: .72rem;
  color: var(--w40);
  letter-spacing: .02em;
}

/* Hero image column */
.hero-media {
  position: relative;
  overflow: hidden;
}
.hero-media::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 80px;
  background: linear-gradient(to right, #000, transparent);
  pointer-events: none;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* ── METHOD (3 PILLARS) ──────────────────────────────── */
.section-method {
  background:
    radial-gradient(ellipse 1000px 500px at 50% -10%, rgba(255,100,0,.07), transparent 65%),
    #060606;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.method-card {
  position: relative;
  border-radius: 22px;
  padding: 34px 28px 28px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}
/* Shimmer line at top of each card */
.method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,154,31,.3), transparent);
  pointer-events: none;
}
.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 72px rgba(0,0,0,.9);
}

.method-number {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--amber);
  opacity: .1;
  line-height: 1;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}

.method-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  color: var(--w100);
}
.method-card p {
  font-size: .88rem;
  line-height: 1.72;
  color: var(--w60);
}

/* ── TOPICS (mini-cards) ─────────────────────────────── */
.section-topics {
  background: #060606;
  padding: 80px 20px;
}

.mini-cards-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--w80);
  font-size: .85rem;
  line-height: 1.45;
  transition: border-color .2s, transform .22s ease;
  will-change: transform;
}
.mini-card:hover {
  border-color: rgba(255,154,31,.2);
  transform: translateY(-2px);
}

.mini-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,154,31,.09);
  border: 1px solid rgba(255,154,31,.24);
  color: var(--amber);
  font-weight: 800;
  font-size: .72rem;
  margin-top: 1px;
}

/* ── GALLERY ─────────────────────────────────────────── */
.section-gallery {
  background:
    radial-gradient(ellipse 700px 400px at 50% 0%, rgba(255,80,0,.07), transparent 60%),
    #060606;
}

.gallery-wrapper {
  position: relative;
  margin-top: 16px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.gallery-track::-webkit-scrollbar { height: 3px; }
.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(255,154,31,.3);
  border-radius: 999px;
}

.gallery-item {
  min-width: min(400px, 100%);
  scroll-snap-align: center;
}
.gallery-item img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 56px rgba(0,0,0,.7);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  color: var(--w80);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s, border-color .2s, transform .2s;
}
.gallery-arrow:hover {
  background: rgba(0,0,0,.9);
  border-color: rgba(255,154,31,.35);
  color: #fff;
  transform: translateY(-50%) scale(1.07);
}
.gallery-prev { left: -8px; }
.gallery-next { right: -8px; }

/* ── PROOF SECTION ───────────────────────────────────── */
.proof-cta { margin-top: 28px; text-align: center; }

.proof-cta-sub {
  text-align: center;
  font-size: .97rem;
  color: var(--w60);
  line-height: 1.68;
  max-width: 620px;
  margin: 0 auto 36px;
}

.section-proof {
  background: #060606;
  padding: 72px 16px 32px;
}

.proof-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.25;
}
.proof-title span { color: var(--amber); }

/* ── EXPERIENCE GRID (6 squares) ─────────────────────── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1060px;
  margin: 28px auto 0;
}

.experience-card {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,154,31,.14);
  box-shadow: 0 20px 52px rgba(0,0,0,.7);
  transition: transform .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 72px rgba(0,0,0,.88), 0 0 0 1px rgba(255,154,31,.25);
}
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.section-testimonials {
  background: #060606;
  padding-top: 0;
  padding-bottom: 64px;
}

.testimonials-heading {
  font-size: .97rem;
  font-weight: 500;
  color: var(--w60);
  text-align: center;
  margin-bottom: 28px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 10px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease;
  will-change: transform;
}
.testimonial-card:hover { transform: translateY(-4px); }

.shorts-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* Lite YouTube */
.yt-lite {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000 center/cover no-repeat;
  cursor: pointer;
  transform: translateZ(0);
}
.yt-lite::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.72) 90%);
  pointer-events: none;
  z-index: 1;
}
/* Play circle */
.yt-lite::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(0,0,0,.52);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  z-index: 3;
  pointer-events: none;
}
.yt-lite .yt-play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 20px; height: 20px;
  margin-left: 2px;
  fill: #fff;
  opacity: .95;
  z-index: 4;
  pointer-events: none;
}
.yt-lite .yt-label {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.yt-lite.is-playing::before,
.yt-lite.is-playing::after,
.yt-lite.is-playing .yt-play,
.yt-lite.is-playing .yt-label { display: none !important; }
.yt-lite:hover::after { transform: translate(-50%,-50%) scale(1.06); }

@media (prefers-reduced-motion: no-preference) {
  .yt-lite::after { animation: ytPulse 2s ease-in-out infinite; }
  @keyframes ytPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.15); }
    50%      { box-shadow: 0 0 0 12px rgba(255,255,255,.0); }
  }
}

/* Plans CTA (now Ver Ingressos) */
.plans-cta { margin-top: 44px; }

/* ── ABOUT ───────────────────────────────────────────── */
.section-about {
  background: #060606;
  margin-top: 32px;
}

/* Gradient border wrapper */
.about-shell {
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255,154,31,.4) 0%,
    rgba(255,154,31,.08) 50%,
    rgba(255,100,0,.3) 100%
  );
  box-shadow: 0 32px 88px rgba(0,0,0,.75);
}

.about-surface {
  border-radius: 26px;
  background: linear-gradient(155deg, #111 0%, #0a0a0a 100%);
  padding: 16px;
}

.about-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 32px;
}

.about-card { background: transparent; min-height: 500px; }

.about-card-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
}
.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-card-text {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-card-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--w100);
}
.about-card-text h2 span { color: var(--amber); }
.about-card-text p {
  font-size: .93rem;
  line-height: 1.76;
  color: var(--w60);
  margin-bottom: 14px;
}
.about-card-text strong { color: var(--w100); font-weight: 700; }

/* ── LOCATION ────────────────────────────────────────── */
.section-location {
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(255,80,0,.07), transparent 58%),
    #060606;
  padding: 72px 16px;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,154,31,.16);
  box-shadow: 0 32px 80px rgba(0,0,0,.75);
  background: var(--surface);
}

.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.location-content {
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 10px;
  color: var(--w100);
}
.location-subtitle {
  color: var(--w60);
  line-height: 1.68;
  font-size: .9rem;
  margin-bottom: 22px;
}
.location-info { margin-bottom: 24px; }
.location-info p {
  color: var(--w60);
  font-size: .88rem;
  line-height: 1.62;
  margin-bottom: 8px;
}
.location-info strong { color: var(--w100); }

/* ── FINAL CTA ───────────────────────────────────────── */
.section-final-cta {
  padding: 96px 20px;
  background:
    radial-gradient(ellipse 1100px 600px at 50% 0%, rgba(255,154,31,.13), transparent 58%),
    #060606;
}

.final-cta-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--w100);
  margin-bottom: 16px;
}

.final-cta-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 34px;
  color: var(--w60);
  line-height: 1.72;
  font-size: .97rem;
}

.final-cta-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 52px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.final-cta-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 12px;
}
.final-cta-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--w80);
  font-size: .9rem;
  line-height: 1.5;
}

.final-cta-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,154,31,.1);
  border: 1px solid rgba(255,154,31,.28);
  color: var(--amber);
  font-weight: 800;
  font-size: .72rem;
  margin-top: 1px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
}

.final-cta-btn {
  padding: 17px 28px;
  min-width: min(420px, 92vw);
  border-radius: 16px;
  font-size: .88rem;
  box-shadow: 0 18px 54px rgba(255,154,31,.22);
}

/* ── FAQ ─────────────────────────────────────────────── */
.section-faq {
  background: #060606;
  padding: 80px 16px 100px;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .22s;
}
.faq-item:hover,
.faq-item.is-open { border-color: rgba(255,154,31,.2); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 22px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--w100);
  text-align: left;
  font-family: inherit;
  font-weight: 600;
  font-size: .96rem;
}

.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,154,31,.07);
  border: 1px solid rgba(255,154,31,.18);
  color: var(--amber);
  font-size: 1.2rem;
  transition: background .22s, border-color .22s, transform .28s ease;
}
.faq-item.is-open .faq-icon {
  background: rgba(255,154,31,.14);
  border-color: rgba(255,154,31,.38);
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
  will-change: height;
}
.faq-answer p {
  padding: 0 22px 20px;
  color: var(--w60);
  line-height: 1.72;
  font-size: .91rem;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: #030303;
  padding: 68px 20px 32px;
  border-top: 1px solid rgba(255,255,255,.04);
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 52px;
}

.footer-brand { max-width: 340px; }
.footer-logo { width: 148px; margin-bottom: 16px; }
.footer-description {
  font-size: .83rem;
  line-height: 1.68;
  color: var(--w40);
}

.footer-col h4 {
  color: var(--w80);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li,
.footer-contact li {
  font-size: .83rem;
  margin-bottom: 10px;
  color: var(--w40);
  line-height: 1.58;
  transition: color .15s;
  cursor: default;
}
.footer-links li:hover,
.footer-contact li:hover { color: var(--amber); }

.footer-divider {
  max-width: 1160px;
  height: 1px;
  background: rgba(255,255,255,.05);
  margin: 46px auto 22px;
}
.footer-bottom {
  text-align: center;
  font-size: .76rem;
  color: var(--w20);
  letter-spacing: .02em;
}

/* ── MODAL ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 40px 34px 34px;
  box-shadow:
    0 50px 120px rgba(0,0,0,.98),
    0 0 0 1px rgba(255,255,255,.03);
  animation: modal-in .26s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(.95) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
/* Shimmer atop modal */
.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,154,31,.4), transparent);
  border-radius: 999px;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  color: var(--w40);
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.modal-close:hover { background: rgba(255,255,255,.1); color: #fff; }

.modal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.modal-subtitle {
  font-size: .84rem;
  color: var(--w40);
  margin-bottom: 24px;
  line-height: 1.58;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px 16px;
  margin-bottom: 16px;
}
.form-group-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w40);
}

.form-group input,
.form-group-full select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--w100);
  font-family: inherit;
  font-size: .9rem;
  outline: none;
  width: 100%;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--w20); }
.form-group input:focus,
.form-group-full select:focus {
  border-color: rgba(255,154,31,.45);
  background: rgba(255,154,31,.03);
}

.form-group-full select {
  appearance: auto;
  -webkit-appearance: auto;
  color: var(--w100);
}
.form-group-full select option {
  background: #fff;
  color: #000;
}

.form-feedback {
  font-size: .82rem;
  margin-top: 10px;
  min-height: 16px;
}
.form-feedback.ok    { color: #68dfa0; }
.form-feedback.error { color: #ff6b6b; }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 9999;
  width: 54px; height: 54px;
  background: linear-gradient(180deg, #2bd467, #1ebe57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 28px rgba(37,211,102,.32),
    0 0 0 5px rgba(37,211,102,.1);
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none;
}
.whatsapp-float img { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 14px 44px rgba(37,211,102,.5),
    0 0 0 8px rgba(37,211,102,.15);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero { margin: 16px auto 28px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; height: 300px; }
  .hero-inner { padding: 26px 24px 32px; }

  .method-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .mini-cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .location-card { grid-template-columns: 1fr; }

  .about-dual { grid-template-columns: 1fr; gap: 0; }
  .about-card { min-height: auto; }
  .about-card-image { min-height: 300px; padding: 14px; }
  .about-card-image img { border-radius: 18px; max-height: 360px; }
  .about-card-text { padding: 28px 24px 32px; }
}

@media (max-width: 720px) {
  .hero-logo { display: none; }
  .hero { border-radius: 18px; }
  .hero-media { height: 280px; }
  .hero-title { font-size: 1.85rem; }
  .hero-panel { padding: 20px 18px; }
  .hero-bottom-row { flex-direction: column; align-items: flex-start; }

  .section { padding: 56px 14px; }
  .section-topics { padding: 56px 14px; }

  .method-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .mini-cards-grid { grid-template-columns: 1fr; }

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

  .final-cta-points { grid-template-columns: 1fr; gap: 12px; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-brand { margin: 0 auto; }
  .footer-logo { margin: 0 auto 14px; }

  .gallery-prev { left: 0; }
  .gallery-next { right: 0; }

  .experience-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .hero-badge-pill {
    width: 52px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
  .modal {
    padding: 30px 18px 24px;
    border-radius: 22px;
  }
  .whatsapp-float { right: 16px; bottom: 16px; }
}
