
:root{
  --rs-bg-dark:#020617;
  --rs-text-light:#e2e8f0;
  --rs-accent-green:#22c55e;

  --rs-max-width:1160px;
  --rs-max-width-narrow:1040px;

  --rs-topbar-height:76px;

  --rs-radius-lg:18px;
  --rs-radius-md:14px;

  --rs-pad-x:20px;
  --rs-pad-x-sm:14px;

  --rs-shadow-soft:0 18px 45px rgba(15,23,42,.60);
  --rs-border-soft:1px solid rgba(148,163,184,.18);
}

/* ==========================================================================
   Base (sem reset agressivo)
   ========================================================================== */

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

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

/* Evita “estourar” largura em mobile */
img, iframe{
  max-width:100%;
}

/* ==========================================================================
   HERO + TOPBAR
   ========================================================================== */

.rs-hero-wrapper{
  color:var(--rs-text-light);
}

/* Topbar */
.rs-hero-topbar{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

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

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

/* Botão WhatsApp (topbar) */
.rs-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  cursor:pointer;

  background:#22c55e;
  color:#fff;

  font-size:.9rem;
  font-weight:600;
  white-space:nowrap;

  box-shadow:0 12px 24px rgba(34,197,94,.35);
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.rs-whatsapp-btn:hover{
  background:#16a34a;
  box-shadow:0 16px 32px rgba(22,163,74,.40);
  transform:translateY(-1px);
}

.rs-whatsapp-icon{
  width:18px;
  height:18px;
  display:inline-flex;
}

.rs-whatsapp-icon svg{
  width:100%;
  height:100%;
  fill:currentColor;
}

/* HERO */
.rs-hero-main{
  position:relative;
  width:100%;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#020617;

  /* Melhor comportamento no mobile (barra do browser) */
  min-height:calc(100vh - var(--rs-topbar-height));
  min-height:calc(100svh - var(--rs-topbar-height));
}

.rs-hero-slider{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
}

.rs-hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:0;
  animation:rsHeroFade 18s infinite;
}

.rs-hero-slide-1{
  background-image:linear-gradient(rgba(15,23,42,.35),rgba(15,23,42,.55)),url("images/hero-rodrigo-1.jpg");
  animation-delay:0s;
}
.rs-hero-slide-2{
  background-image:linear-gradient(rgba(15,23,42,.35),rgba(15,23,42,.55)),url("images/hero-rodrigo-2.jpg");
  animation-delay:6s;
}
.rs-hero-slide-3{
  background-image:linear-gradient(rgba(15,23,42,.35),rgba(15,23,42,.55)),url("images/hero-rodrigo-3.jpg");
  animation-delay:12s;
}

@keyframes rsHeroFade{
  0%,20%{opacity:1;}
  33%,100%{opacity:0;}
}

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

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

.rs-hero-headline{
  margin:0 0 12px;
  font-size:clamp(1.85rem, 3vw + 1rem, 2.6rem);
  line-height:1.25;
  font-weight:700;
  color:#f9fafb;
}

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

.rs-hero-scroll-indicator{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  z-index:2;
  pointer-events:none;
}

.rs-hero-scroll-arrow{
  display:block;
  width:26px;
  height:26px;
  border-bottom:2px solid #e5e7eb;
  border-right:2px solid #e5e7eb;
  transform:rotate(45deg);
  animation:rsArrowBounce 1.4s infinite ease-in-out;
  opacity:.9;
}

@keyframes rsArrowBounce{
  0%,100%{transform:translate(-2px,0) rotate(45deg);}
  50%{transform:translate(-2px,8px) rotate(45deg);}
}

/* ==========================================================================
   VÍDEO DE VENDAS
   ========================================================================== */

.rs-video{
  padding:4rem 1.5rem 4.5rem;
  background:#020617;
  color:#e5e7eb;
}

.rs-video-inner{
  max-width:1100px;
  margin:0 auto;
}

.rs-video-header{
  text-align:center;
  margin-bottom:2.5rem;
}

.rs-video-title{
  font-size:clamp(1.6rem, 2.4vw, 2.2rem);
  line-height:1.25;
  letter-spacing:.03em;
  color:#f9fafb;
  margin:0 0 .9rem;
  font-weight:600;
}

.rs-video-subtitle{
  max-width:720px;
  margin:0 auto;
  font-size:.98rem;
  line-height:1.6;
  color:#cbd5f5;
}

.rs-video-player-wrapper{
  margin:0 auto 2.5rem;
}

.rs-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,.60), 0 0 0 1px rgba(148,163,184,.12);
}

.rs-video-player::before{
  content:"";
  display:block;
  padding-top:56.25%;
}

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

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

.rs-video-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.85rem 1.8rem;
  border-radius:999px;
  background:#16a34a;
  color:#fff;
  font-size:.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;
  white-space:nowrap;
}

.rs-video-whatsapp-btn:hover{
  background:#22c55e;
  transform:translateY(-1px);
  box-shadow:0 16px 40px rgba(22,163,74,.70);
}

.rs-video-whatsapp-icon{
  display:inline-flex;
  width:20px;
  height:20px;
}
.rs-video-whatsapp-icon svg{
  width:100%;
  height:100%;
  fill:#fff;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

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

.rs-services-inner{
  max-width:1100px;
  margin:0 auto;
}

.rs-services-header{
  text-align:center;
  margin-bottom:2.5rem;
}

.rs-services-title{
  font-size:clamp(1.75rem, 2.6vw, 2.3rem);
  line-height:1.2;
  margin:0 0 .75rem;
  color:#0f172a;
  font-weight:700;
}

.rs-services-subtitle{
  max-width:640px;
  margin:0 auto;
  font-size:.98rem;
  line-height:1.7;
  color:#4b5563;
}

.rs-services-grid{
  margin-top:2.2rem;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:1.4rem 1.6rem;
}

.rs-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;
}

.rs-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;
}

/* ==========================================================================
   MÉTRICAS
   ========================================================================== */

.rs-metrics-strip{
  background:#f9fafb;
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
  padding:1.8rem 1.5rem;
}

.rs-metrics-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.8rem;
  flex-wrap:wrap;
}

.rs-metric-item{
  flex:1 1 0;
  min-width:260px;
  display:flex;
  align-items:center;
  gap:.9rem;
}

.rs-metric-icon{
  width:32px;
  height:32px;
  border-radius:999px;
  background:#e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.rs-metric-icon svg{
  width:18px;
  height:18px;
}
.rs-metric-icon svg *{
  stroke:#4b5563;
  stroke-width:1.6;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.rs-metric-text{
  font-size:.9rem;
  color:#111827;
  line-height:1.5;
}

/* ==========================================================================
   ONDAS DE CHOQUE (cards com vídeo vertical)
   ========================================================================== */

.rs-shock{
  padding:4rem 1.5rem 4.5rem;
  background:radial-gradient(circle at top, #0b1120 0, #020617 52%, #020617 100%);
  color:#e5e7eb;
}

.rs-shock-inner{
  max-width:1100px;
  margin:0 auto;
}

.rs-shock-header{
  text-align:center;
  margin-bottom:2.75rem;
}

.rs-shock-title{
  font-size:clamp(1.75rem, 2.5vw, 2.3rem);
  line-height:1.25;
  letter-spacing:.04em;
  color:#f9fafb;
  margin:0 0 1rem;
}

.rs-shock-subtitle{
  max-width:760px;
  margin:0 auto;
  font-size:.96rem;
  line-height:1.7;
  color:#cbd5f5;
}

.rs-shock-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.75rem;
}

.rs-shock-card{
  background:rgba(15,23,42,.90);
  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,.80), 0 0 0 1px rgba(15,23,42,.60);
  display:flex;
  flex-direction:column;
  gap:.75rem;
  min-width:0; /* evita overflow em grid */
}

.rs-shock-card-title{
  font-size:1rem;
  font-weight:600;
  color:#f9fafb;
  margin:0;
}

.rs-shock-card-text{
  font-size:.9rem;
  line-height:1.6;
  color:#d1d5db;
  margin:0;
}

.rs-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);
}

.rs-shock-video::before{
  content:"";
  display:block;
  padding-top:177.78%;
}
.rs-shock-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* ==========================================================================
   QUEIXAS
   ========================================================================== */

.rs-complaints{
  padding:4rem 1.5rem 4.5rem;
  background:#020617;
  color:#e5e7eb;
}

.rs-complaints-inner{
  max-width:1120px;
  margin:0 auto;
}

.rs-complaints-header{
  text-align:center;
}

.rs-complaints-title{
  font-size:clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing:.04em;
  margin:0 0 .9rem;
  color:#f9fafb;
}

.rs-complaints-subtitle{
  max-width:720px;
  margin:0 auto;
  font-size:.98rem;
  line-height:1.6;
  color:#cbd5f5;
}

.rs-complaints-lead{
  margin:.8rem 0 0;
  font-size:.9rem;
  color:#9ca3af;
}

.rs-complaints-grid{
  margin-top:2.5rem;
  display:grid;
  grid-template-columns:repeat(2, minmax(260px, 1fr));
  gap:1.1rem 1.4rem;
  align-items:stretch;
}

.rs-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,.80);
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   MOSAICO (100% largura do container externo sem estourar)
   - Para ficar 100% “da tela” sem overflow, usamos width:100% e centralizamos
     com margens, e damos padding interno.
   ========================================================================== */

.rs-testimonial-mosaic{
  /* full dentro da seção (sem 100vw pra não estourar por scrollbar/paddings) */
  width: 100%;
  box-sizing: border-box;

  margin: 0 auto;

  padding: 0 12px;          /* respira sem estourar */
  margin-bottom: 1.25rem;

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

  /* evita qualquer overflow lateral */
  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 Gardênia 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 (igual ao seu)
   ========================================================================== */

.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
   ========================================================================== */

.rs-quote-faq.rs-quote-faq-dark{
  padding:4.5rem 1.5rem 5rem;
  background:#020617;
  color:#e5e7eb;
}

.rs-quote-faq-inner{
  max-width:var(--rs-max-width-narrow);
  margin:0 auto;
}

.rs-quote-cta{
  text-align:center;
  margin-bottom:3.2rem;
}

.rs-quote-cta-text{
  max-width:760px;
  margin:0 auto 1rem;
  font-size:1.05rem;
  line-height:1.8;
  font-style:italic;
  color:#f9fafb;
}

.rs-quote-cta-author{
  margin:0 auto;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#9ca3af;
}

.rs-quote-cta-button-wrapper{
  margin-top:2rem;
}

.rs-quote-whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:.9rem 1.9rem;
  border-radius:999px;
  background:#16a34a;
  color:#fff;
  font-size:.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;
  white-space:nowrap;
}

.rs-quote-whatsapp-btn:hover{
  background:#22c55e;
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(22,163,74,.70);
}

.rs-quote-whatsapp-icon{
  display:inline-flex;
  width:20px;
  height:20px;
}
.rs-quote-whatsapp-icon svg{
  width:100%;
  height:100%;
  fill:#fff;
}

/* FAQ */
.rs-faq-block{
  margin-top:1.5rem;
}

.rs-faq-title{
  text-align:center;
  margin:0 0 2rem;
  font-size:clamp(1.6rem, 2.4vw, 2.2rem);
  color:#f9fafb;
}

.rs-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;
}

.rs-faq-item + .rs-faq-item{
  border-top:1px solid rgba(148,163,184,.40);
}

.rs-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;
}

.rs-faq-question span:first-child{
  flex:1;
  min-width:0;
}

.rs-faq-icon{
  flex-shrink:0;
  width:22px;
  height:22px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.70);
  position:relative;
}

.rs-faq-icon::before,
.rs-faq-icon::after{
  content:"";
  position:absolute;
  inset:50%;
  background:#e5e7eb;
  transform:translate(-50%,-50%);
  transition:transform .18s ease, opacity .18s ease;
}

.rs-faq-icon::before{ width:10px; height:2px; }
.rs-faq-icon::after{ width:2px; height:10px; }

.rs-faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 .25rem;
  transition:max-height .26s ease, padding-bottom .26s ease;
}

.rs-faq-answer p{
  font-size:.95rem;
  line-height:1.7;
  color:#d1d5db;
  margin:0 0 1rem;
}

/* Aumentei bastante pra não cortar respostas no mobile */
.rs-faq-item.is-open .rs-faq-answer{
  max-height:900px;
  padding-bottom:.85rem;
}

.rs-faq-item.is-open .rs-faq-icon::after{
  transform:translate(-50%,-50%) scaleY(0);
  opacity:0;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

.rs-footer{
  background:#020617;
  color:#e5e7eb;
  padding:3.5rem 1.5rem 2.75rem;
  border-top:1px solid rgba(148,163,184,.25);
}

.rs-footer-inner{
  max-width:var(--rs-max-width-narrow);
  margin:0 auto;
}

.rs-footer-main{
  text-align:center;
  margin-bottom:2.4rem;
}

.rs-footer-title{
  margin:0 0 .4rem;
  font-size:clamp(1.35rem, 2vw, 1.7rem);
  color:#f9fafb;
}

.rs-footer-subtitle{
  margin:0;
  font-size:.95rem;
  color:#9ca3af;
}

.rs-footer-info{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:1.8rem;
  margin-bottom:2.4rem;
}

.rs-footer-info-item{
  padding-right:.5rem;
}

.rs-footer-label{
  display:block;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:.35rem;
}

.rs-footer-text{
  margin:0;
  font-size:.9rem;
  line-height:1.6;
  color:#e5e7eb;
}

.rs-footer-bottom{
  border-top:1px solid rgba(31,41,55,.80);
  padding-top:1.4rem;
  text-align:center;
}

.rs-footer-copy{
  margin:0;
  font-size:.8rem;
  color:#6b7280;
}

/* ==========================================================================
   BOTÃO WHATSAPP FLUTUANTE (melhor em mobile)
   ========================================================================== */

.rs-floating-whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:60;

  display:inline-flex;
  align-items:center;
  gap:.5rem;

  padding:.8rem 1.4rem;
  border-radius:999px;
  background:#16a34a;
  color:#fff;

  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;
}

.rs-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,.30);
}

.rs-floating-whatsapp-icon{
  display:inline-flex;
  width:20px;
  height:20px;
}
.rs-floating-whatsapp-icon svg{
  width:100%;
  height:100%;
  fill:#fff;
}

.rs-floating-whatsapp-text{
  white-space:nowrap;
}

/* ==========================================================================
   RESPONSIVO (ajustes focados em “cabendo na tela”)
   ========================================================================== */

/* <= 1024 */
@media (max-width:1024px){
  .rs-shock-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

/* <= 900 */
@media (max-width:900px){
  .rs-complaints-grid{ grid-template-columns:1fr; }

  .rs-testimonial-inline-layout{
    grid-template-columns:1fr;
    gap:1.8rem;
  }
  .rs-testimonial-quote-inline{ text-align:left; }
  .rs-testimonial-video{ max-width:280px; }
}

/* <= 800 */
@media (max-width:800px){
  .rs-metrics-inner{
    flex-direction:column;
    align-items:stretch;
  }
  .rs-metric-item{ min-width:100%; }
}

/* <= 768 (topbar + footer + “respiro” geral) */
@media (max-width:768px){
  :root{
    --rs-topbar-height:88px; /* topbar tende a ficar mais alta no mobile */
  }

  .rs-hero-topbar-inner{
    padding:10px var(--rs-pad-x-sm);
    flex-wrap:wrap;
  }

  .rs-hero-logo img{
    max-height:38px;
  }

  .rs-hero-topbar-cta{
    width:100%;
    display:flex;
    justify-content:flex-end;
  }

  .rs-whatsapp-btn{
    padding:10px 14px;
    font-size:.85rem;
  }

  .rs-hero-content{
    padding:32px var(--rs-pad-x-sm) 76px;
  }

  .rs-hero-headline{
    font-size:clamp(1.65rem, 5vw, 2.15rem);
  }

  .rs-footer{
    padding:3rem 1.25rem 2.4rem;
  }

  .rs-footer-info{
    grid-template-columns:1fr;
    gap:1.4rem;
    text-align:left;
  }
}

/* <= 720 */
@media (max-width:720px){
  .rs-shock{
    padding:3.2rem 1.25rem 3.8rem;
  }
  .rs-shock-grid{
    grid-template-columns:minmax(0, 1fr);
  }
  .rs-shock-card{
    padding:1.1rem 1rem 1.3rem;
  }
}

/* <= 640 (CTAs 100% / FAQ padding / vídeo sessão) */
@media (max-width:640px){
  .rs-video{
    padding:3rem 1.25rem 3.5rem;
  }

  .rs-video-title{ font-size:1.5rem; }
  .rs-video-subtitle{ font-size:.95rem; }

  .rs-video-whatsapp-btn,
  .rs-quote-whatsapp-btn{
    width:100%;
  }

  .rs-faq-list{
    padding:.75rem 1rem;
  }

  .rs-quote-faq.rs-quote-faq-dark{
    padding:3.5rem 1.25rem 4rem;
  }

  .rs-quote-cta-text{ font-size:1rem; }
}

/* <= 480 (evita “estourar” e mantém tudo cabendo na tela) */
@media (max-width:480px){
  /* Topbar: se ficar apertado, botão ocupa a linha e não estoura */
  .rs-hero-topbar-cta{
    justify-content:stretch;
  }
  .rs-whatsapp-btn{
    width:100%;
    justify-content:center;
  }

  /* Floating: vira compacto (ícone + texto quebrável) */
  .rs-floating-whatsapp{
    right:16px;
    bottom:16px;
    padding:.75rem 1rem;
    font-size:.8rem;
  }

  .rs-floating-whatsapp-text{
    max-width:160px;
    white-space:normal; /* quebra linha se precisar */
    line-height:1.2;
  }

  /* Cards com mais respiro lateral */
  .rs-services,
  .rs-metrics-strip,
  .rs-complaints,
  .rs-testimonial-inline.rs-testimonial-light,
  .rs-footer{
    padding-left:1.15rem;
    padding-right:1.15rem;
  }
}

/* <= 380 (ultra pequeno: esconde textos longos nos botões flutuantes) */
@media (max-width:380px){
  .rs-floating-whatsapp-text{
    display:none;
  }
}

/* ===== FIX CTA "Quero agendar..." não estourar no mobile ===== */
.rs-quote-cta-button-wrapper{
  display:flex;
  justify-content:center;
  width:100%;
}

.rs-quote-whatsapp-btn{
  max-width:100%;
  box-sizing:border-box;
}

/* Mobile: botão 100% e texto pode quebrar */
@media (max-width:640px){
  .rs-quote-whatsapp-btn{
    width:100%;
    justify-content:center;
    white-space:normal;          /* <- remove o nowrap no mobile */
    text-align:center;
    line-height:1.2;
    padding:0.95rem 1.2rem;
    gap:0.55rem;
  }

  .rs-quote-whatsapp-btn span:last-child{
    display:block;               /* força o texto a caber */
    max-width:100%;
    word-break:break-word;
    overflow-wrap:anywhere;      /* garante quebra se necessário */
  }
}
/* HERO TOPBAR — MOBILE: só logo centralizada (sem botão) */
@media (max-width: 768px) {
  .rs-hero-topbar-cta {
    display: none !important;
  }

  .rs-hero-topbar-inner {
    justify-content: center;
  }

  .rs-hero-logo {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .rs-hero-logo img {
    max-height: 42px; /* ajuste fino se quiser */
  }
}

