:root{
  --fs-bg-dark:#020617;
  --fs-text-light:#e2e8f0;
  --fs-accent-green:#22c55e;
  --fs-max-width:1160px;
  --fs-topbar-height:76px;
}

*{ box-sizing:border-box; }

html, body{
  height:100%;
  margin:0;
  padding:0;
}

body{
  background-color:var(--fs-bg-dark);
  font-family:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--fs-text-light);
}

/* =========================
   HERO
   ========================= */
.fs-hero-wrapper{ color:var(--fs-text-light); }

.fs-hero-topbar{
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}

.fs-hero-topbar-inner{
  max-width:var(--fs-max-width);
  margin:0 auto;
  padding:12px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.fs-hero-logo img{
  display:block;
  max-height:44px;
  width:auto;
}

/* Botão WhatsApp topbar */
.fs-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:999px;
  border:none;
  text-decoration:none;
  cursor:pointer;
  background:#22c55e;
  color:#ffffff;
  font-size:0.9rem;
  font-weight:600;
  box-shadow:0 12px 24px rgba(34,197,94,.35);
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  white-space:nowrap;
}
.fs-whatsapp-btn:hover{
  background:#16a34a;
  box-shadow:0 16px 32px rgba(22,163,74,.4);
  transform:translateY(-1px);
}
.fs-whatsapp-icon{ width:18px; height:18px; display:inline-flex; }
.fs-whatsapp-icon svg{ width:100%; height:100%; fill:currentColor; }

.fs-hero-main{
  position:relative;
  min-height:calc(100vh - var(--fs-topbar-height));
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#020617;
}

/* slider */
.fs-hero-slider{ position:absolute; inset:0; z-index:0; }
.fs-hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:0;
  animation:fsHeroFade 18s infinite;
}
.fs-hero-slide-1{
  background-image:linear-gradient(rgba(15,23,42,.35),rgba(15,23,42,.55)), url("images/hero-fisio1.jpg");
  animation-delay:0s;
}
.fs-hero-slide-2{
  background-image:linear-gradient(rgba(15,23,42,.35),rgba(15,23,42,.55)), url("images/hero-fisio2.jpg");
  animation-delay:6s;
}
.fs-hero-slide-3{
  background-image:linear-gradient(rgba(15,23,42,.35),rgba(15,23,42,.55)), url("images/hero-fisio2.jpg");
  animation-delay:12s;
}
@keyframes fsHeroFade{
  0%,20%{ opacity:1; }
  33%,100%{ opacity:0; }
}

.fs-hero-content{
  position:relative;
  z-index:2;
  max-width:var(--fs-max-width);
  padding:40px 20px;
  text-align:center;
}

.fs-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(15,23,42,.8);
  border:1px solid rgba(148,163,184,.5);
  font-size:.8rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#cbd5f5;
}

.fs-hero-headline{
  margin:0 0 12px;
  font-size:clamp(1.9rem,3vw + 1rem,2.7rem);
  line-height:1.2;
  font-weight:700;
  color:#f9fafb;
}

.fs-hero-sub{
  max-width:760px;
  margin:0 auto 16px;
  font-size:1rem;
  line-height:1.7;
  color:#cbd5f5;
}

.fs-hero-location{
  margin:0;
  font-size:1rem;
  color:#e5e7eb;
  text-transform:uppercase;
  letter-spacing:.18em;
}

.fs-hero-cta{
  margin-top:22px;
  display:flex;
  justify-content:center;
}
.fs-hero-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.95rem 1.4rem;
  border-radius:999px;
  background:#16a34a;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.02em;
  box-shadow:0 14px 34px rgba(22,163,74,.55);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fs-hero-whatsapp-btn:hover{
  background:#22c55e;
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(22,163,74,.7);
}

.fs-hero-scroll-indicator{
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  z-index:2;
}
.fs-hero-scroll-arrow{
  display:block;
  width:26px;
  height:26px;
  border-bottom:2px solid #e5e7eb;
  border-right:2px solid #e5e7eb;
  transform:rotate(45deg);
  animation:fsArrowBounce 1.4s infinite ease-in-out;
  opacity:.9;
}
@keyframes fsArrowBounce{
  0%,100%{ transform:translate(-2px,0) rotate(45deg); }
  50%{ transform:translate(-2px,8px) rotate(45deg); }
}

/* HERO RESPONSIVO (mobile: só logo central, sem botão topbar) */
@media (max-width:768px){
  .fs-hero-topbar-inner{
    padding:12px 14px;
    justify-content:center;
  }
  .fs-hero-topbar-cta{ display:none; } /* <- remove botão no mobile */
  .fs-hero-logo img{ max-height:40px; }

  .fs-hero-content{ padding:32px 16px 72px; }
  .fs-hero-headline{ font-size:clamp(1.65rem,5vw,2.2rem); }
  .fs-hero-sub{ font-size:.98rem; }
}

/* =========================
   VÍDEO DE VENDAS
   ========================= */
.fs-video{
  padding:4rem 1.5rem 4.5rem;
  background:#020617;
  color:#e5e7eb;
}
.fs-video-inner{ max-width:1100px; margin:0 auto; }
.fs-video-header{ text-align:center; margin-bottom:2.5rem; }
.fs-video-title{
  font-size:clamp(1.7rem,2.4vw,2.2rem);
  line-height:1.25;
  letter-spacing:.03em;
  color:#f9fafb;
  margin:0 0 .9rem;
  font-weight:600;
}
.fs-video-subtitle{
  max-width:720px;
  margin:0 auto;
  font-size:.98rem;
  line-height:1.6;
  color:#cbd5f5;
}

.fs-video-player-wrapper{ margin:0 auto 2.5rem; }
.fs-video-player{
  position:relative;
  width:100%;
  max-width:900px;
  margin:0 auto;
  border-radius:1rem;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,.6), 0 0 0 1px rgba(148,163,184,.12);
}
.fs-video-player::before{ content:""; display:block; padding-top:56.25%; }
.fs-video-player iframe{ position:absolute; inset:0; width:100%; height:100%; }

.fs-video-cta-wrapper{ display:flex; justify-content:center; }

.fs-video-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:.9rem 1.2rem;
  border-radius:999px;
  background:#16a34a;
  color:#ffffff;
  font-size:0.98rem;
  font-weight:600;
  text-decoration:none;
  letter-spacing:.02em;
  box-shadow:0 12px 30px rgba(22,163,74,.55);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  max-width:100%;
  width:auto;
}
.fs-video-whatsapp-btn:hover{
  background:#22c55e;
  transform:translateY(-1px);
  box-shadow:0 16px 40px rgba(22,163,74,.7);
}
.fs-video-whatsapp-icon{ display:inline-flex; width:20px; height:20px; flex:0 0 auto; }
.fs-video-whatsapp-icon svg{ width:100%; height:100%; fill:#fff; }

@media (max-width:640px){
  .fs-video{ padding:3rem 1.25rem 3.5rem; }
  .fs-video-title{ font-size:1.5rem; }
  .fs-video-subtitle{ font-size:.95rem; }

  /* botão 100% no mobile e sem estourar */
  .fs-video-whatsapp-btn{
    width:100%;
    max-width:520px;
  }
  .fs-video-whatsapp-btn span{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
}

/* =========================
   BENEFÍCIOS (BRANCO)
   ========================= */
.fs-services{
  background:#ffffff;
  color:#0f172a;
  padding:4rem 1.5rem 4.5rem;
}
.fs-services-inner{ max-width:1100px; margin:0 auto; }
.fs-services-header{ text-align:center; margin-bottom:2.5rem; }
.fs-services-title{
  font-size:clamp(1.8rem,2.6vw,2.3rem);
  line-height:1.2;
  margin:0 0 .75rem;
  color:#0f172a;
  font-weight:700;
}
.fs-services-subtitle{
  max-width:640px;
  margin:0 auto;
  font-size:.98rem;
  line-height:1.7;
  color:#4b5563;
}

.fs-services-grid{
  margin-top:2.2rem;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:1.4rem 1.6rem;
}
.fs-service-card{
  background:#f9fafb;
  border-radius:1rem;
  padding:1.4rem 1.3rem 1.3rem;
  border:1px solid rgba(148,163,184,.35);
  box-shadow:0 10px 22px rgba(15,23,42,.04), 0 0 0 1px rgba(148,163,184,.06);
  text-align:center;
  font-size:.95rem;
  line-height:1.6;
  color:#111827;
}

.fs-services-note{
  margin:2.4rem auto 0;
  max-width:780px;
  padding:1rem 1.2rem;
  border-radius:.9rem;
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  font-size:.92rem;
  color:#065f46;
  text-align:center;
}

@media (max-width:640px){
  .fs-services{ padding:3.2rem 1.25rem 3.5rem; }
}

/* =========================
   INDICAÇÕES (DARK)
   ========================= */
.fs-complaints{
  padding:4rem 1.5rem 4.5rem;
  background:#020617;
  color:#e5e7eb;
}
.fs-complaints-inner{ max-width:1120px; margin:0 auto; }
.fs-complaints-header{ text-align:center; }
.fs-complaints-title{
  font-size:clamp(1.9rem,3vw,2.4rem);
  letter-spacing:.04em;
  margin:0 0 .9rem;
  color:#f9fafb;
}
.fs-complaints-subtitle{
  max-width:720px;
  margin:0 auto;
  font-size:.98rem;
  line-height:1.6;
  color:#cbd5f5;
}
.fs-complaints-lead{
  margin-top:.8rem;
  font-size:.9rem;
  color:#9ca3af;
}

.fs-complaints-grid{
  margin-top:2.5rem;
  display:grid;
  grid-template-columns:repeat(2, minmax(260px, 1fr));
  gap:1.1rem 1.4rem;
  align-items:stretch;
}
.fs-complaint-card{
  padding:1.1rem 1.4rem;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(15,23,42,.96), rgba(15,23,42,.92));
  border:1px solid rgba(148,163,184,.35);
  font-size:.95rem;
  line-height:1.55;
  color:#e5e7eb;
  box-shadow:0 14px 30px rgba(15,23,42,.55), 0 0 0 1px rgba(15,23,42,.8);
}
@media (max-width:900px){
  .fs-complaints-grid{ grid-template-columns:1fr; }
}

/* =========================
   TRATAMENTOS (3 vídeos verticais)
   ========================= */
.fs-shock{
  padding:4rem 1.5rem 4.5rem;
  background:radial-gradient(circle at top, #0b1120 0, #020617 52%, #020617 100%);
  color:#e5e7eb;
}
.fs-shock-inner{ max-width:1100px; margin:0 auto; }
.fs-shock-header{ text-align:center; margin-bottom:2.75rem; }
.fs-shock-title{
  font-size:clamp(1.8rem,2.5vw,2.3rem);
  line-height:1.25;
  letter-spacing:.04em;
  color:#f9fafb;
  margin:0 0 1rem;
}
.fs-shock-subtitle{
  max-width:760px;
  margin:0 auto;
  font-size:.96rem;
  line-height:1.7;
  color:#cbd5f5;
}

.fs-shock-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.75rem;
}
.fs-shock-card{
  background:rgba(15,23,42,.9);
  border-radius:1.1rem;
  padding:1.2rem 1.2rem 1.4rem;
  border:1px solid rgba(148,163,184,.28);
  box-shadow:0 18px 45px rgba(15,23,42,.8), 0 0 0 1px rgba(15,23,42,.6);
  display:flex;
  flex-direction:column;
  gap:.75rem;
}
.fs-shock-card-title{
  font-size:1rem;
  font-weight:600;
  color:#f9fafb;
  margin:0;
}
.fs-shock-card-text{
  font-size:.9rem;
  line-height:1.6;
  color:#d1d5db;
  margin:0;
}

.fs-shock-video{
  position:relative;
  width:100%;
  border-radius:.9rem;
  overflow:hidden;
  margin-top:.4rem;
  box-shadow:0 16px 38px rgba(15,23,42,.85), 0 0 0 1px rgba(148,163,184,.25);
}
.fs-shock-video::before{
  content:"";
  display:block;
  padding-top:177.78%;
}
.fs-shock-video iframe{ position:absolute; inset:0; width:100%; height:100%; }

@media (max-width:1024px){
  .fs-shock-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width:720px){
  .fs-shock{ padding:3.2rem 1.25rem 3.8rem; }
  .fs-shock-grid{ grid-template-columns:1fr; }
  .fs-shock-card{ padding:1.1rem 1rem 1.3rem; }
}

/* =========================
   CORRIDA (2 vídeos verticais)
   ========================= */
.fs-running{
  padding:4rem 1.5rem 4.5rem;
  background:#ffffff;
  color:#0f172a;
}
.fs-running-inner{ max-width:1100px; margin:0 auto; }
.fs-running-header{ text-align:center; margin-bottom:2.5rem; }
.fs-running-title{
  font-size:clamp(1.8rem,2.6vw,2.3rem);
  margin:0 0 .75rem;
  font-weight:700;
  color:#0f172a;
}
.fs-running-subtitle{
  max-width:760px;
  margin:0 auto;
  font-size:.98rem;
  line-height:1.7;
  color:#4b5563;
}

.fs-running-grid-vertical{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.6rem;
  align-items:start;
  margin-top:2rem;
}

.fs-running-card{
  background:#f9fafb;
  border-radius:1rem;
  padding:1.2rem 1.2rem 1.4rem;
  border:1px solid rgba(148,163,184,.35);
  box-shadow:0 10px 22px rgba(15,23,42,.04), 0 0 0 1px rgba(148,163,184,.06);
  display:flex;
  flex-direction:column;
  gap:.7rem;
}

.fs-running-card-title{
  margin:0;
  font-size:1rem;
  font-weight:700;
  color:#111827;
}
.fs-running-card-text{
  margin:0;
  font-size:.92rem;
  line-height:1.55;
  color:#374151;
}

/* wrapper vertical padrão (9:16) */
.fs-video-vertical{
  position:relative;
  width:100%;
  border-radius:.9rem;
  overflow:hidden;
  margin-top:.3rem;
  box-shadow:0 16px 30px rgba(15,23,42,.10), 0 0 0 1px rgba(148,163,184,.18);
}
.fs-video-vertical::before{ content:""; display:block; padding-top:177.78%; }
.fs-video-vertical iframe{ position:absolute; inset:0; width:100%; height:100%; }

.fs-video-vertical--running{
  max-width:420px;
  margin:0 auto;
}

.fs-running-cta{
  margin-top:2.2rem;
  display:flex;
  justify-content:center;
}

@media (max-width:900px){
  .fs-running-grid-vertical{ grid-template-columns:1fr; }
  .fs-video-vertical--running{ max-width:360px; }
}

/* ==========================================================================
   DEPOIMENTO (fundo branco, mosaico + seta + vídeo/quote)
   ========================================================================== */

.rs-testimonial-inline.rs-testimonial-light{
  padding:4rem 1.5rem 4.5rem;
  background:#fff;
  color:#0f172a;
}

.rs-testimonial-inline .rs-testimonial-inner{
  width: 100%;
  margin:0 auto;
}

.rs-testimonial-inline .rs-testimonial-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 1.6rem;
}

.rs-testimonial-inline .rs-testimonial-title{
  margin:0;
  font-size:clamp(1.7rem, 2.4vw, 2.2rem);
  color:#0f172a;
}

/* (novo) subtítulo dentro do header (opcional) */
.rs-testimonial-inline .rs-testimonial-header .rs-testimonial-subtitle{
  margin:.9rem auto 0;
  max-width:720px;
}

/* ==========================================================================
   MOSAICO (100% largura do container externo sem estourar)
   ========================================================================== */

.rs-testimonial-mosaic{
  width: 100%;
  box-sizing: border-box;

  margin: 0 auto;

  padding: 0 12px;
  margin-bottom: 1.25rem;

  column-count: 3;
  column-gap: 18px;

  overflow-x: clip;
}

.rs-testimonial-shot{
  margin: 0 0 18px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.rs-testimonial-shot img{
  width: 100%;
  height: auto;
  display: block;

  border-radius: 18px;
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 16px 36px rgba(15,23,42,.12);
}

/* Responsivo do mosaico */
@media (max-width: 1100px){
  .rs-testimonial-mosaic{
    column-count: 2;
    column-gap: 16px;
    padding: 0 10px;
  }
}

@media (max-width: 640px){
  .rs-testimonial-mosaic{
    column-count: 1;
    column-gap: 0;
    padding: 0 6px;
  }
  .rs-testimonial-shot{ margin-bottom: 14px; }
}

/* ==========================================================================
   SETINHA CENTRAL (sem calda)
   ========================================================================== */

.rs-testimonial-divider{
  display:flex;
  justify-content:center;
  margin: .2rem 0 1rem;
}

.rs-testimonial-arrow{
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(15,23,42,.45);
  border-bottom: 2px solid rgba(15,23,42,.45);
  transform: rotate(45deg);
  opacity: .9;
}

/* ==========================================================================
   Texto abaixo dos prints
   ========================================================================== */

.rs-testimonial-subtitle{
  margin:0;
  color:#4b5563;
  line-height:1.7;
  font-size:.98rem;
}

.rs-testimonial-subtitle-after{
  text-align:center;
  max-width:720px;
  margin: 0 auto 2.2rem;
}

/* ==========================================================================
   Layout vídeo + citação
   ========================================================================== */

.rs-testimonial-inline-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1.1fr);
  gap:2rem;
  align-items:center;
}

.rs-testimonial-video-wrapper{
  display:flex;
  justify-content:center;
}

.rs-testimonial-video{
  position:relative;
  width:100%;
  max-width:320px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,23,42,.12), 0 0 0 1px rgba(148,163,184,.18);
}

.rs-testimonial-video-vertical::before{
  content:"";
  display:block;
  padding-top:177.78%;
}

.rs-testimonial-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.rs-testimonial-quote-inline{
  font-size:.98rem;
  line-height:1.8;
  color:#111827;
}

.rs-testimonial-quote-main{
  margin:0 0 1.2rem;
  font-style:italic;
}

.rs-testimonial-quote-author{
  margin:0;
  font-weight:600;
  font-size:.95rem;
  color:#4b5563;
}

/* Responsivo do vídeo + quote */
@media (max-width:900px){
  .rs-testimonial-inline-layout{
    grid-template-columns:1fr;
    gap:1.8rem;
  }
  .rs-testimonial-quote-inline{ text-align:left; }
  .rs-testimonial-video{ max-width:280px; }
}

/* ==========================================================================
   CTA Google no final (centralizado)
   ========================================================================== */

.rs-testimonial-google-cta{
  margin-top: 2rem;
  display:flex;
  justify-content:center;
}

.rs-google-reviews-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: .95rem 1.45rem;
  border-radius: 999px;

  background:#111827;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
  letter-spacing:.02em;

  box-shadow: 0 14px 34px rgba(15,23,42,.16);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.rs-google-reviews-btn:hover{
  background:#0f172a;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(15,23,42,.20);
}

@media (max-width:640px){
  .rs-google-reviews-btn{
    width:100%;
    max-width:520px;
  }
}


/* =========================
   CITAÇÃO + CTA + FAQ (dark)
   ========================= */
.fs-quote-faq.fs-quote-faq-dark{
  padding:4.5rem 1.5rem 5rem;
  background:#020617;
  color:#e5e7eb;
}
.fs-quote-faq-inner{
  max-width:1040px;
  margin:0 auto;
}

/* citação */
.fs-quote-cta{ text-align:center; margin-bottom:3.2rem; }
.fs-quote-cta-text{
  max-width:760px;
  margin:0 auto 1rem;
  font-size:1.05rem;
  line-height:1.8;
  font-style:italic;
  color:#f9fafb;
}
.fs-quote-cta-author{
  margin:0 auto;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#9ca3af;
}
.fs-quote-cta-button-wrapper{ margin-top:2rem; display:flex; justify-content:center; }

/* botão CTA responsivo (não estoura) */
.fs-quote-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:.95rem 1.15rem;
  border-radius:999px;
  background:#16a34a;
  color:#ffffff;
  font-size:0.98rem;
  font-weight:600;
  text-decoration:none;
  letter-spacing:.02em;
  box-shadow:0 14px 34px rgba(22,163,74,.55);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  max-width:100%;
  width:auto;
}
.fs-quote-whatsapp-btn:hover{
  background:#22c55e;
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(22,163,74,.7);
}
.fs-quote-whatsapp-icon{
  display:inline-flex;
  width:20px;
  height:20px;
  flex:0 0 auto;
}
.fs-quote-whatsapp-icon svg{ width:100%; height:100%; fill:#ffffff; }

.fs-quote-whatsapp-btn span{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* No mobile: vira 100% e cabe na tela */
@media (max-width:640px){
  .fs-quote-faq.fs-quote-faq-dark{ padding:3.5rem 1.25rem 4rem; }
  .fs-quote-cta-text{ font-size:1rem; }
  .fs-quote-cta-button-wrapper{ padding:0; }

  .fs-quote-whatsapp-btn{
    width:100%;
    max-width:520px;
  }
}

/* FAQ */
.fs-faq-block{ margin-top:1.5rem; }
.fs-faq-title{
  text-align:center;
  margin:0 0 2rem;
  font-size:clamp(1.7rem,2.4vw,2.2rem);
  color:#f9fafb;
}
.fs-faq-list{
  max-width:880px;
  margin:0 auto;
  border-radius:1.25rem;
  background:radial-gradient(circle at top left, #111827, #020617 60%);
  box-shadow:0 20px 50px rgba(15,23,42,.65), 0 0 0 1px rgba(148,163,184,.18);
  padding:1rem 1.25rem;
}
.fs-faq-item + .fs-faq-item{ border-top:1px solid rgba(148,163,184,.4); }

.fs-faq-question{
  width:100%;
  padding:1.1rem .25rem;
  border:none;
  background:transparent;
  color:#e5e7eb;
  font-size:.98rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.2rem;
  cursor:pointer;
  text-align:left;
}
.fs-faq-question span:first-child{ flex:1; }

.fs-faq-icon{
  flex-shrink:0;
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.7);
  position:relative;
}
.fs-faq-icon::before,
.fs-faq-icon::after{
  content:"";
  position:absolute;
  inset:50%;
  background:#e5e7eb;
  transform:translate(-50%,-50%);
  transition:transform .18s ease, opacity .18s ease;
}
.fs-faq-icon::before{ width:10px; height:2px; }
.fs-faq-icon::after{ width:2px; height:10px; }

.fs-faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 .25rem;
  transition:max-height .26s ease, padding-bottom .26s ease;
}
.fs-faq-answer p{
  font-size:.95rem;
  line-height:1.7;
  color:#d1d5db;
  margin:0 0 1rem;
}
.fs-faq-item.is-open .fs-faq-answer{
  max-height:320px;
  padding-bottom:.85rem;
}
.fs-faq-item.is-open .fs-faq-icon::after{
  transform:translate(-50%,-50%) scaleY(0);
  opacity:0;
}

@media (max-width:640px){
  .fs-faq-list{ padding:.75rem 1rem; }
}

/* =========================
   RODAPÉ
   ========================= */
.fs-footer{
  background:#020617;
  color:#e5e7eb;
  padding:3.5rem 1.5rem 2.75rem;
  border-top:1px solid rgba(148,163,184,.25);
}
.fs-footer-inner{ max-width:1040px; margin:0 auto; }
.fs-footer-main{ text-align:center; margin-bottom:2.4rem; }
.fs-footer-title{
  margin:0 0 .4rem;
  font-size:clamp(1.4rem,2vw,1.7rem);
  color:#f9fafb;
}
.fs-footer-subtitle{
  margin:0;
  font-size:.95rem;
  color:#9ca3af;
}
.fs-footer-info{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.8rem;
  margin-bottom:2.4rem;
}
.fs-footer-label{
  display:block;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:.35rem;
}
.fs-footer-text{
  margin:0;
  font-size:.9rem;
  line-height:1.6;
  color:#e5e7eb;
}

.fs-footer-bottom{
  border-top:1px solid rgba(31,41,55,.8);
  padding-top:1.4rem;
  text-align:center;
}
.fs-footer-copy{
  margin:0;
  font-size:.8rem;
  color:#6b7280;
}

@media (max-width:768px){
  .fs-footer{ padding:3rem 1.25rem 2.4rem; }
  .fs-footer-info{
    grid-template-columns:1fr;
    gap:1.4rem;
    text-align:left;
  }
}

/* =========================
   BOTÃO WHATSAPP FLUTUANTE
   ========================= */
.fs-floating-whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:60;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.8rem 1.2rem;
  border-radius:999px;
  background:#16a34a;
  color:#ffffff;
  font-size:.9rem;
  font-weight:600;
  text-decoration:none;
  letter-spacing:.02em;
  box-shadow:0 14px 32px rgba(22,163,74,.65), 0 0 0 1px rgba(15,23,42,.25);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
  max-width:min(92vw, 520px);
}
.fs-floating-whatsapp:hover{
  background:#22c55e;
  transform:translateY(-1px);
  box-shadow:0 18px 40px rgba(22,163,74,.75), 0 0 0 1px rgba(15,23,42,.3);
}
.fs-floating-whatsapp-icon{
  display:inline-flex;
  width:20px;
  height:20px;
  flex:0 0 auto;
}
.fs-floating-whatsapp-icon svg{ width:100%; height:100%; fill:#ffffff; }
.fs-floating-whatsapp-text{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* mobile: reduz e sempre cabe */
@media (max-width:480px){
  .fs-floating-whatsapp{
    right:14px;
    bottom:14px;
    padding:.75rem .95rem;
    font-size:.82rem;
    max-width:92vw;
  }
}
