/* ==========================================================================
   Top Plus Cleaning Services - Design System
   Reproducao fiel do site topplusservices.com
   ========================================================================== */

:root {
  /* Paleta de cores */
  --blue: #1375BA;        /* Azul da marca: heros, titulos, links, before/after */
  --green: #47A64B;       /* Verde primario: faixa de areas, botoes CTA */
  --green-vivid: #36AA28; /* Verde vivo: hover */
  --lime: #C7D451;        /* Lima: secao de servicos e cards */
  --dark: #363636;        /* Cinza escuro: titulos de peso */
  --gray: #7A7A7A;        /* Cinza texto: corpo padrao */
  --black: #000000;       /* Preto: hero da home */
  --white: #FFFFFF;

  /* Layout */
  --container: 1140px;
  --radius: 20px;
  --gap: 20px;

  /* Tipografia */
  --font-title: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-slab: 'Roboto Slab', serif;
}

/* Reset -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-vivid); }
ul { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--blue);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: 42px; }
h2 { font-size: 30px; }
h3 { font-size: 25px; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Botoes ------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: var(--radius);
  padding: 14px 34px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  text-align: center;
}
.btn:hover { background: var(--green-vivid); color: var(--white); transform: translateY(-2px); }
.btn-blue { background: var(--blue); }
.btn-blue:hover { background: #0f5f96; }

/* Secoes ------------------------------------------------------------------- */
.section { padding: 60px 0; }
.section-tight { padding: 40px 0; }
.section .container > h2:first-child,
.section .container > h3:first-child { margin-top: 0; }

.bg-black  { background: var(--black); }
.bg-green  { background: var(--green); }
.bg-lime   { background: var(--lime); }
.bg-blue   { background: var(--blue); }
.bg-white  { background: var(--white); }
.bg-light  { background: #f5f7f6; }

.bg-black  h1, .bg-black  h2, .bg-black  h3, .bg-black  p, .bg-black li { color: var(--white); }
.bg-green  h1, .bg-green  h2, .bg-green  h3, .bg-green  p, .bg-green li { color: var(--white); }
.bg-blue   h1, .bg-blue   h2, .bg-blue   h3, .bg-blue   p, .bg-blue li  { color: var(--white); }
.bg-lime   h2, .bg-lime   h3 { color: var(--blue); }
.bg-lime   p, .bg-lime li { color: var(--dark); }

.text-center { text-align: center; }
.lead { font-size: 18px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.logo img { height: 46px; width: auto; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.main-nav a {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--dark);
  padding: 8px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }

/* Dropdown de servicos */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " \25be"; font-size: 11px; color: var(--gray); }
.dropdown {
  position: absolute;
  top: 100%;
  left: -14px;
  min-width: 218px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 18px; font-size: 15px; }
.dropdown a:hover { background: #f0f6fb; color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { padding: 11px 24px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block; height: 3px; width: 100%;
  background: var(--blue); border-radius: 3px;
  margin: 4px 0; transition: .3s;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--white);
  padding: 72px 0;
  background: var(--black);
}
.hero.hero-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.78));
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.hero h1 { color: var(--white); font-size: 46px; margin-bottom: 18px; }
.hero p { color: rgba(255,255,255,.9); font-size: 18px; }

.page-hero {
  background: var(--blue);
  color: var(--white);
  padding: 54px 0;
}
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 8px; letter-spacing: .04em; }
.page-hero h1 { color: var(--white); }

/* Form embed (GoHighLevel) */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.quote-card iframe { width: 100%; border: none; border-radius: 14px; display: block; }

/* ==========================================================================
   Areas atendidas
   ========================================================================== */
.areas-head { max-width: 760px; }
.areas-sub { color: rgba(255,255,255,.92); font-size: 17px; margin: 8px 0 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  list-style: none;
  margin-top: 28px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 14px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 15.5px;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.area-chip:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.area-chip svg { flex: none; width: 18px; height: 18px; opacity: .95; }

/* ==========================================================================
   Processo (steps)
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 30px 0;
}
.step {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
.step .num {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 600; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 20px; margin-bottom: 6px; }
.step p { font-size: 15px; margin: 0; }

/* ==========================================================================
   Cards de servico
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.14); }
.service-card img { height: 190px; width: 100%; object-fit: cover; }
.service-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { color: var(--blue); font-size: 21px; }
.service-card p { color: var(--gray); font-size: 15px; flex: 1; }
.service-card .btn { align-self: flex-start; margin-top: 8px; padding: 10px 24px; font-size: 15px; }

/* ==========================================================================
   Before & After
   ========================================================================== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}
.ba-item { background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 14px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-pair figure { margin: 0; }
.ba-pair img { border-radius: 12px; height: 150px; width: 100%; object-fit: cover; }
.ba-pair figcaption {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--white); margin-top: 8px; letter-spacing: .05em; text-transform: uppercase;
}
.ba-title { text-align: center; color: var(--white); margin-top: 12px; font-weight: 500; }
.ba-single img { border-radius: 12px; height: 210px; width: 100%; object-fit: cover; }

/* ==========================================================================
   Conteudo / listas de checklist
   ========================================================================== */
.rich h2 { margin-top: 1.4em; }
.rich h3 { color: var(--blue); margin-top: 1.4em; }
.prose { max-width: 860px; }

.media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 20px 0;
}
.media-row.reverse .media-text { order: 2; }
.media-row img { border-radius: var(--radius); box-shadow: 0 12px 30px rgba(0,0,0,.12); width: 100%; object-fit: cover; }

.checklist-cols {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  margin-top: 14px;
}
.checklist-cols li {
  break-inside: avoid;
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 15px;
  color: var(--gray);
}
.checklist-cols li::before {
  content: "\2713";
  position: absolute; left: 0; top: 6px;
  color: var(--green);
  font-weight: 700;
}
.check-group { margin-bottom: 22px; }
.check-group h3 { color: var(--green-vivid); font-size: 22px; margin-bottom: 4px; }

.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; list-style: none; }
.two-col-list li { padding: 6px 0 6px 24px; position: relative; }
.two-col-list li::before { content: "\2022"; color: var(--green); position: absolute; left: 6px; font-weight: 700; }

/* Faixa CTA azul (Total quality and safety) */
.cta-band { background: var(--blue); color: var(--white); padding: 48px 0; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.92); }

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.faq-item p:last-child { margin-bottom: 0; }

/* Payment methods */
.payment {
  text-align: center;
  padding: 44px 0;
  border-top: 1px solid #eee;
}
.payment h3 { color: var(--green-vivid); margin-bottom: 18px; }
.payment img { margin: 0 auto; max-width: 640px; width: 100%; }

/* Reviews */
.review-cta { text-align: center; padding: 30px 0; }
.social-badges { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 26px; }
.social-badges img { height: 60px; width: auto; border-radius: 14px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #12181c;
  color: #c3ccd2;
  padding: 56px 0 0;
  font-size: 15px;
}
.site-footer a { color: #c3ccd2; }
.site-footer a:hover { color: var(--lime); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
}
.footer-grid h4 { color: var(--white); font-size: 18px; margin-bottom: 16px; }
.footer-logo { height: 54px; margin-bottom: 16px; }
.footer-menu { list-style: none; }
.footer-menu li { margin-bottom: 9px; }
.footer-contact li { margin-bottom: 10px; padding-left: 26px; position: relative; }
.footer-contact li b { color: var(--white); font-weight: 600; }
.footer-map iframe { width: 100%; height: 180px; border: 0; border-radius: 12px; }
.footer-payment { text-align: center; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; }
.footer-payment img { max-width: 520px; width: 100%; margin: 0 auto; }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13.5px;
  color: #8a969e;
}
.footer-bottom b { color: var(--lime); font-weight: 600; }

/* Floating quote button (mobile) */
.floating-quote {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  box-shadow: 0 10px 26px rgba(71,166,75,.5);
  display: none;
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 36px; }
  .hero h1 { font-size: 38px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  h1 { font-size: 30px; }
  h2 { font-size: 25px; }
  .section { padding: 44px 0; }

  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .main-nav {
    position: fixed;
    top: 78px; right: 0;
    width: 84%; max-width: 340px;
    height: calc(100vh - 78px);
    background: var(--white);
    box-shadow: -8px 0 30px rgba(0,0,0,.18);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    padding: 12px 0;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { border-bottom: 1px solid #f0f0f0; }
  .main-nav a { display: block; padding: 14px 24px; font-size: 16px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding: 0; background: #f7f9fb; border-radius: 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > a::after { float: right; }

  .hero { padding: 44px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 30px; }

  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .media-row { grid-template-columns: 1fr; gap: 22px; }
  .media-row.reverse .media-text { order: 0; }
  .checklist-cols { columns: 1; }
  .two-col-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .btn { width: 100%; }
  .service-card .btn, .header-cta .btn { width: auto; }
  .floating-quote { display: inline-block; width: auto; }
}

/* ==========================================================================
   Formulario de orcamento (Resend)
   ========================================================================== */
.quote-form { display: flex; flex-direction: column; gap: 14px; padding: 26px 24px; }
.quote-form .quote-title { color: var(--blue); font-size: 22px; margin: 0 0 2px; }
.quote-form .quote-sub { color: var(--gray); font-size: 14px; margin: 0 0 6px; }
.quote-form .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-form .field { display: flex; flex-direction: column; gap: 5px; }
.quote-form .field.full { grid-column: 1 / -1; }
.quote-form label { font-size: 13px; font-weight: 500; color: var(--dark); font-family: var(--font-title); }
.quote-form label .req { color: #d33; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: #f7f9fb;
  border: 1px solid #dfe6ec;
  border-radius: 10px;
  padding: 11px 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(71,166,75,.16);
  background: #fff;
}
.quote-form textarea { resize: vertical; min-height: 92px; }
.quote-form .btn { width: 100%; margin-top: 4px; }
.quote-form .btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }
.quote-form .form-status { margin: 6px 0 0; font-size: 14.5px; font-weight: 500; min-height: 1px; color: var(--gray); }
.quote-form .form-status.ok { color: var(--green-vivid); }
.quote-form .form-status.err { color: #d33; }
.quote-form .form-note { font-size: 12px; color: #9aa4ad; margin: 0; }
@media (max-width: 767px) {
  .quote-form { padding: 20px 16px; }
  .quote-form .fields { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Before & After - slider de comparacao
   ========================================================================== */
.ba-compare { background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 14px; }
.bac-frame {
  position: relative;
  --pos: 50%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: #0b1418;
}
.bac-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
}
.bac-before-img { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.bac-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; background: #fff; transform: translateX(-1.5px);
  box-shadow: 0 0 12px rgba(0,0,0,.45); pointer-events: none;
}
.bac-handle {
  position: absolute; top: 50%; left: var(--pos);
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  pointer-events: none;
}
.bac-handle svg { width: 22px; height: 22px; }
.bac-tag {
  position: absolute; bottom: 12px;
  font-family: var(--font-title); font-weight: 600; font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(0,0,0,.55);
  padding: 5px 12px; border-radius: 20px; pointer-events: none;
}
.bac-tag-before { left: 12px; }
.bac-tag-after { right: 12px; }
.bac-title { text-align: center; color: #fff; margin: 15px 0 2px; font-weight: 600; font-size: 18px; }

/* ==========================================================================
   About - intro melhorada + stats
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-title); font-weight: 600;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(0,0,0,.18);
  width: 100%;
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  text-align: center;
  padding: 28px 18px;
  background: #f5f7f6;
  border-radius: var(--radius);
  border: 1px solid #eaefec;
}
.stat .num { font-family: var(--font-title); font-weight: 700; font-size: 32px; color: var(--blue); line-height: 1; }
.stat .lbl { font-size: 14px; color: var(--gray); margin-top: 8px; }

@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-media { order: -1; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding: 22px 12px; }
}

/* ==========================================================================
   Feature cards (Why choose us)
   ========================================================================== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.feature {
  display: flex; align-items: center; gap: 14px;
  background: #f5f7f6; border: 1px solid #eaefec;
  border-radius: 16px; padding: 20px 22px;
}
.feature .ico {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(71,166,75,.14); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature span { font-family: var(--font-title); font-weight: 500; color: var(--dark); font-size: 15.5px; }

/* ==========================================================================
   Contact - intro
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.contact-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(19,117,186,.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.ci-ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; color: var(--dark); font-family: var(--font-title); font-size: 14px; margin-bottom: 2px; }
.contact-list a, .contact-list .val { color: var(--gray); }
.contact-list a:hover { color: var(--green-vivid); }

/* ==========================================================================
   Reviews - carrossel
   ========================================================================== */
.reviews-summary { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.reviews-summary .big { font-family: var(--font-title); font-weight: 700; font-size: 40px; color: var(--dark); line-height: 1; }
.stars { color: #f5a623; letter-spacing: 2px; font-size: 18px; }
.reviews-summary .muted { color: var(--gray); }
.reviews-carousel { position: relative; margin-top: 26px; }
.rc-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 16px; -webkit-overflow-scrolling: touch;
}
.rc-track::-webkit-scrollbar { height: 8px; }
.rc-track::-webkit-scrollbar-thumb { background: #d7dee3; border-radius: 8px; }
.review-card {
  flex: 0 0 370px; max-width: 370px;
  scroll-snap-align: start;
  background: #fff; border: 1px solid #eef1f3;
  border-radius: 18px; padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  display: flex; flex-direction: column;
}
.rc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rc-avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  color: #fff; font-family: var(--font-title); font-weight: 600; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.rc-head .who { flex: 1; min-width: 0; }
.rc-head b { display: block; color: var(--dark); font-size: 15.5px; }
.rc-meta { font-size: 12.5px; color: var(--gray); }
.rc-gicon { flex: none; width: 22px; height: 22px; }
.rc-stars { color: #f5a623; letter-spacing: 2px; font-size: 16px; margin-bottom: 10px; }
.rc-text { color: #4a5560; font-size: 15px; line-height: 1.6; margin: 0 0 14px; flex: 1; }
.rc-tag {
  align-self: flex-start; font-size: 12px; font-weight: 500;
  color: var(--blue); background: rgba(19,117,186,.08);
  padding: 5px 12px; border-radius: 20px;
}
.rc-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; border: 1px solid #e4e9ec; color: var(--blue);
  font-size: 22px; cursor: pointer; z-index: 3;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.rc-nav:hover { background: var(--blue); color: #fff; }
.rc-prev { left: -10px; }
.rc-next { right: -10px; }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .review-card { flex-basis: 82vw; max-width: 82vw; }
  .rc-nav { display: none; }
}

/* ==========================================================================
   Reviews - selo estilo Google (EXCELLENT)
   ========================================================================== */
.google-badge {
  display: block;
  max-width: 340px;
  margin: 0 auto 36px;
  background: #fff;
  border: 1px solid #eef1f3;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(0,0,0,.09);
  padding: 28px 30px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.google-badge:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.14); }
.gb-title {
  font-family: var(--font-title); font-weight: 700;
  font-size: 26px; letter-spacing: .05em; color: var(--dark);
}
.gb-stars { color: #FBBC05; font-size: 32px; letter-spacing: 5px; line-height: 1; margin: 12px 0 10px; }
.gb-sub { color: #5a6570; font-size: 16px; }
.gb-google {
  margin-top: 14px;
  font-family: var(--font-title); font-weight: 500;
  font-size: 34px; letter-spacing: -1px;
}
.gb-google b { font-weight: 500; }

/* Selo de qualidade na faixa CTA */
.cta-band-inner { display: flex; align-items: center; gap: 46px; justify-content: space-between; }
.cta-band-text { flex: 1; }
.cta-seal { flex: none; width: 180px; max-width: 38%; filter: drop-shadow(0 10px 22px rgba(0,0,0,.3)); }
@media (max-width: 767px) {
  .cta-band-inner { flex-direction: column-reverse; gap: 24px; text-align: center; }
  .cta-seal { width: 150px; }
}

/* ==========================================================================
   Follow us - cards sociais
   ========================================================================== */
.follow-wrap { text-align: center; }
.follow-sub { color: var(--gray); max-width: 520px; margin: 8px auto 0; }
.follow-grid { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.follow-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid #e7ecef; border-radius: 16px;
  padding: 16px 26px; min-width: 240px; text-align: left;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.follow-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.12); border-color: #d7dee3; }
.follow-card img { width: 46px; height: 46px; border-radius: 12px; flex: none; }
.follow-card b { display: block; color: var(--dark); font-family: var(--font-title); font-size: 16.5px; }
.follow-card .fc-sub { font-size: 13px; color: var(--gray); }
@media (max-width: 767px) {
  .follow-grid { flex-direction: column; align-items: stretch; }
  .follow-card { justify-content: flex-start; }
}

/* CTA centralizada com acao secundaria */
.cta-center { text-align: center; }
.cta-center .prose { margin: 0 auto 26px; max-width: 660px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,.65); color: #fff; padding: 12px 30px; }
.btn-ghost:hover { background: #fff; color: var(--blue); border-color: #fff; }
@media (max-width: 767px) { .cta-actions { flex-direction: column; } .cta-actions .btn { width: 100%; } }

/* ==========================================================================
   FAQ - acordeao (recolher/expandir)
   ========================================================================== */
details.faq-item { padding: 0; overflow: hidden; }
details.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-title); font-weight: 600; font-size: 17.5px; color: var(--blue);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--green-vivid); }
.faq-item .chev { flex: none; width: 22px; height: 22px; color: var(--gray); transition: transform .25s ease; }
details.faq-item[open] .chev { transform: rotate(180deg); color: var(--blue); }
.faq-item .faq-body { margin: 0; padding: 0 24px 22px; color: var(--gray); line-height: 1.65; }
details.faq-item[open] summary { color: var(--blue); }

/* ==========================================================================
   Areas - marquee (carrossel deslizante)
   ========================================================================== */
.areas-marquee {
  margin-top: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.areas-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: areas-scroll 48s linear infinite;
}
.areas-marquee:hover .areas-track { animation-play-state: paused; }
.areas-track .area-chip { flex: none; }
@keyframes areas-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .areas-marquee { overflow-x: auto; }
  .areas-track { animation: none; }
}

/* Selo de reviews sem fundo branco */
.google-badge { background: transparent; border: none; box-shadow: none; padding: 4px 0 0; }
.google-badge:hover { transform: none; box-shadow: none; }

/* ==========================================================================
   Hero - carrossel de fundo com Ken Burns + lista de servicos
   ========================================================================== */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  will-change: opacity, transform;
}
.hero-slide.is-active { opacity: 1; animation: heroKB 4.4s ease-out both; }
.hero-slide:nth-child(even).is-active { animation-name: heroKBout; }
@keyframes heroKB { from { transform: scale(1); } to { transform: scale(1.14); } }
@keyframes heroKBout { from { transform: scale(1.14); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; }
}
.hero.hero-img::before { z-index: 1; }
.hero .container { z-index: 2; }

.hero-services {
  list-style: none;
  margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 26px; max-width: 520px;
}
.hero-services a {
  display: flex; align-items: center; gap: 11px;
  color: #fff; font-family: var(--font-title); font-weight: 500; font-size: 16px;
}
.hero-services a:hover { color: var(--lime); }
.hs-ico {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.hs-ico svg { width: 15px; height: 15px; }
@media (max-width: 767px) {
  .hero-services { grid-template-columns: 1fr; gap: 10px; max-width: none; }
}

/* ==========================================================================
   Blog - index e artigos
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px; }
.blog-card {
  background: #fff; border: 1px solid #eef1f3; border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,.14); }
.blog-card img { height: 190px; width: 100%; object-fit: cover; }
.blog-card .bc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-cat { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-vivid); }
.blog-card h3 { font-size: 19px; margin: 8px 0; line-height: 1.3; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card p { color: var(--gray); font-size: 14.5px; flex: 1; margin-bottom: 12px; }
.blog-card .bc-meta { font-size: 13px; color: #9aa4ad; }

.article { max-width: 760px; margin: 0 auto; }
.article-meta { color: #9aa4ad; font-size: 14px; margin-bottom: 22px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-hero img { width: 100%; border-radius: var(--radius); margin-bottom: 28px; box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.article h2 { margin-top: 1.6em; font-size: 26px; }
.article h3 { margin-top: 1.3em; color: var(--blue); font-size: 20px; }
.article p, .article li { color: #3f4a54; font-size: 16.5px; line-height: 1.75; }
.article > p:first-of-type { font-size: 18px; }
.article ul { margin: 0 0 1.1em; padding-left: 0; list-style: none; }
.article ul li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.article ul li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.article-key { background: #eef6ee; border-left: 4px solid var(--green); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 22px 0; }
.article-key p { margin: 0; color: var(--dark); }
.article-cta { background: var(--blue); color: #fff; border-radius: var(--radius); padding: 28px; margin: 30px 0; text-align: center; }
.article-cta h3 { color: #fff; margin: 0 0 6px; }
.article-cta p { color: rgba(255,255,255,.92); margin: 0 0 16px; }
.related-links { margin-top: 22px; }
.related-links a { display: inline-block; margin: 0 8px 8px 0; background: #eef6fb; color: var(--blue); padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; }
.related-links a:hover { background: var(--blue); color: #fff; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 767px) { .blog-grid { grid-template-columns: 1fr; } .article p, .article li { font-size: 16px; } }

/* Hero services - uma por linha com mini descricao */
.hero-services { display: flex; flex-direction: column; gap: 12px; max-width: none; margin: 24px 0 0; }
.hero-services a { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hs-txt { display: inline-flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.hs-txt b { color: #fff; font-weight: 600; font-size: 16px; }
.hs-desc { color: rgba(255,255,255,.68); font-weight: 400; font-size: 14.5px; font-family: var(--font-body); }
.hero-services a:hover b { color: var(--lime); }
@media (max-width: 767px) { .hero-services { gap: 10px; } }
