/* ===================================================================
   REVITTO — style.css
   Mobile First, CSS puro, fonte Sora
=================================================================== */

:root {
  --bg-dark: #0a0a0b;
  --bg-darker: #060607;
  --bg-navy: #14131c;
  --bg-light: #f4f4f5;
  --bg-light-2: #ececed;
  --white: #ffffff;

  --ink: #0d0d0f;
  --ink-soft: #2a2a2e;
  --muted: #8b8b91;
  --muted-light: #b8b8bd;
  --muted-dark: #6b6b72;

  --accent: #14e3a4;      /* verde menta */
  --accent-deep: #0fc78f;
  --pink: #ff1e56;        /* rosa/vermelho */

  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;

  --ff: "Sora", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Tipografia auxiliar ---------- */
.text-accent { color: var(--accent); }
.text-accent-pink { color: var(--pink); }
.text-muted { color: var(--muted); }

.overline {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-dark);
}
.overline--accent { color: var(--accent-deep); }
.overline--danger { color: var(--pink); }
.overline--on-dark { color: var(--muted-light); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 15px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn__arrow { font-size: 10px; }
.btn--accent { background: var(--accent); color: #032a20; }
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,0.25);
}
.btn--ghost:hover { border-color: var(--ink); }

/* =====================================================================
   HEADER
===================================================================== */
.site-header {
  position: relative;
  z-index: 3;
  background: transparent;
  border: 0;
}
@keyframes headerDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 70px;
}
.header__logo img { height: 22px; width: auto; }

.header__tag {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  margin-left: auto;
  margin-right: 12px;
  text-align: left;
}

.header__nav {
  display: none;
  gap: 30px;
  font-size: 14px;
  color: #d4d4d8;
}
.header__nav a { transition: color 0.2s; }
.header__nav a:hover { color: var(--accent); }

.header__cta { display: none; }

.header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  cursor: pointer;
}
.header__toggle span {
  display: block; height: 2px; width: 18px;
  margin-inline: auto;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile aberto */
.header__nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px; left: 0; right: 0;
  background: var(--bg-darker);
  padding: 18px 22px 26px;
  gap: 20px;
  border-bottom: 1px solid var(--line-dark);
}

/* =====================================================================
   SEÇÕES GENÉRICAS
===================================================================== */
.section { padding: 72px 0; }
.section--tight { padding: 56px 0; }

.section__markers {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 40px;
}

.section__title {
  font-size: clamp(2rem, 8vw, 3.1rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__title--light { color: var(--white); }

/* =====================================================================
   HERO
===================================================================== */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--white);
  overflow: hidden;
  padding: 0 0 64px;
  margin: 10px;
  border-radius: 24px;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,8,10,0.92) 0%, rgba(8,8,10,0.7) 45%, rgba(8,8,10,0.45) 100%),
    radial-gradient(90% 70% at 80% 75%, rgba(20,227,164,0.12), transparent 60%);
}
/* ----- HERO MOBILE (ordem do print): texto-lateral, título, lead, imagem, botão, stats ----- */
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-top: 12px;
}
/* achata os dois contêineres no mobile para poder reordenar os filhos */
.hero__content, .hero__side { display: contents; }
/* a tag de serviços vai para o header no mobile */
.hero__content > .overline { display: none; }

.hero__side-text {
  order: 1;
  font-size: 13px;
  color: #b4b4ba;
  max-width: 46ch;
  margin: 0;
}
.hero__title {
  order: 2;
  font-size: clamp(2rem, 8.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero__lead {
  order: 3;
  color: #c4c4ca;
  font-size: 15px;
  max-width: 42ch;
  margin: 0;
}
.hero__media {
  order: 4;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.hero__media img { width: 100%; height: 200px; object-fit: cover; }

.hero__actions {
  order: 5;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
.hero__actions .btn { width: 100%; justify-content: center; padding: 17px 22px; }
.hero__actions .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.3); }
.hero__actions .btn--ghost:hover { border-color: var(--white); }
.hero__actions .btn--ghost { display: none; } /* "Agenda limitada" oculto no mobile */

.hero__list {
  order: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  text-align: left;
  margin: 2px 0 0;
}
.hero__list li {
  position: relative;
  padding-left: 18px;
  font-size: 11px;
  line-height: 1.3;
  color: #c6c6cc;
}
.hero__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  background: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

/* =====================================================================
   SERVIÇOS
===================================================================== */
.services { background: var(--white); }
.services__title { margin-bottom: 46px; }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  padding: 30px 26px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
}
.service-card__num { color: var(--pink); font-weight: 700; font-size: 14px; }
.service-card__icon { display: block; font-size: 30px; margin: 14px 0 18px; }
.service-card h3 { font-size: 20px; font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14px; max-width: 34ch; }

.services__foot {
  margin-top: 40px;
  font-size: clamp(1.1rem, 4vw, 1.45rem);
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 64ch;
  line-height: 1.35;
}
.services__foot strong { font-weight: 700; color: var(--ink); }

/* =====================================================================
   ANTES E DEPOIS
===================================================================== */
.beforeafter { background: var(--white); }
.beforeafter .section__title { margin-bottom: 40px; }
.beforeafter__grid { display: grid; gap: 20px; }

.ba-card { border-radius: var(--radius); padding: 32px 28px; }
.ba-card--light { background: var(--bg-light); border: 1px solid var(--line); }
.ba-card--dark { background: var(--bg-dark); color: var(--white); }
.ba-card .overline { margin-bottom: 16px; }
.ba-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.ba-card__desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; max-width: 34ch; }
.ba-card--dark .ba-card__desc { color: #a0a0a6; }

.ba-list { display: grid; gap: 16px; }
.ba-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}
.ba-list li::before {
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.ba-list--bad li::before { content: "✕"; color: var(--pink); }
.ba-list--good li::before { content: "✓"; color: var(--accent); }

/* =====================================================================
   PROVA / CAMPANHAS / CASES
===================================================================== */
.proof { background: var(--bg-light); }
.proof__top { display: grid; gap: 30px; margin-bottom: 26px; }
.proof__intro p { color: var(--muted-dark); font-size: 15px; margin-top: 18px; max-width: 32ch; }

.proof__stats { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.stat-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 150px;
  background: var(--bg-dark);
  display: flex;
  align-items: flex-end;
}
.stat-card__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.stat-card__body {
  position: relative;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  width: 100%;
}
.stat-card__body strong { display: block; font-size: 28px; font-weight: 700; }
.stat-card__body span { font-size: 12px; color: #c8c8cd; }

.cases__grid { display: grid; gap: 18px; margin-top: 14px; }
.case-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.case-card__media { overflow: hidden; }
.case-card__media img {
  width: 100%; height: 180px; object-fit: cover;
  transition: transform 0.4s ease;
}
a.case-card:hover .case-card__media img { transform: scale(1.04); }
.case-card__body { padding: 20px; }
.case-card__body h3 { font-size: 18px; font-weight: 600; margin: 12px 0 8px; }
.case-card__body p { color: var(--muted); font-size: 13px; }

/* ----- Carrossel "Mais cases" ----- */
.cases-more { margin-top: 40px; }
.cases-more__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-bottom: 18px;
}
.carousel__nav { display: flex; gap: 10px; }
.carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.carousel__btn:hover { background: var(--ink); color: var(--white); }
.carousel__btn:disabled { opacity: 0.35; cursor: default; }
.carousel__btn:disabled:hover { background: var(--white); color: var(--ink); }

.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .case-card {
  flex: 0 0 82%;
  scroll-snap-align: start;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.tag--accent { background: var(--accent); color: #032a20; }

/* =====================================================================
   COMO ATUAMOS (dark)
===================================================================== */
.how { background: var(--bg-dark); color: var(--white); }
.how .section__markers { border-color: var(--line-dark); }
.how .section__title { margin-bottom: 40px; }

/* Accordion compartilhado */
.accordion { display: grid; }
.accordion__item { border-top: 1px solid var(--line-dark); }
.accordion__item:last-child { border-bottom: 1px solid var(--line-dark); }

.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--ff);
  padding: 26px 4px;
}
.accordion__num {
  font-size: 24px;
  font-weight: 700;
  color: var(--muted-dark);
  min-width: 38px;
}
.accordion__item.is-open .accordion__num.text-accent,
.accordion__num.text-accent { color: var(--accent); }
.accordion__label {
  flex: 1;
  font-size: clamp(1rem, 4.5vw, 1.25rem);
  font-weight: 600;
}
.accordion__icon {
  position: relative;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  flex-shrink: 0;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.25s, opacity 0.2s;
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item.is-open .accordion__icon {
  background: var(--pink);
  border-color: var(--pink);
}
.accordion__item.is-open .accordion__icon::after { opacity: 0; }

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.accordion__item.is-open .accordion__panel { max-height: 520px; }
.accordion__panel-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 0 4px 28px 56px;
}
.accordion__panel-inner p { color: #b6b6bc; font-size: 14px; max-width: 52ch; }
.accordion__thumb {
  width: 100%;
  max-width: 280px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* =====================================================================
   CONTEÚDO / VÍDEO (navy)
===================================================================== */
.video { background: var(--bg-navy); color: var(--white); }
.video__inner { display: grid; gap: 30px; align-items: center; }
.video__media {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.video__media img { width: 100%; height: 240px; object-fit: cover; filter: brightness(0.7); }

.video__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 12px 30px rgba(255,30,86,0.4);
}
.video__play--sm { width: 44px; height: 44px; font-size: 13px; }

.video__content .section__title { margin: 14px 0 18px; }
.video__lead { color: #a8a8b0; font-size: 15px; margin-bottom: 26px; max-width: 42ch; }

/* =====================================================================
   DEPOIMENTOS
===================================================================== */
.testimonials { background: var(--white); }
.testimonials .section__title { margin-bottom: 36px; }
.testimonials__grid { display: grid; gap: 18px; }
.testimonial-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.testimonial-card img { width: 100%; height: 230px; object-fit: cover; }
.testimonial-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 55%);
}
.testimonial-card__info {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 1;
  color: var(--white);
}
.testimonial-card__info strong { display: block; font-size: 15px; font-weight: 600; }
.testimonial-card__info span { font-size: 12px; color: #cfcfd4; }

/* =====================================================================
   DECIDE / GARANTIA
===================================================================== */
.decide { background: var(--bg-light); }
.decide__grid { display: grid; gap: 20px; }
.decide-card { border-radius: var(--radius); padding: 34px 28px; }
.decide-card--light { background: var(--white); border: 1px solid var(--line); }
.decide-card--accent { background: var(--accent); color: #04241b; }
.decide-card .overline { margin-bottom: 18px; }
.decide-card h3 { font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 18px; }
.decide-card p { font-size: 14px; margin-bottom: 14px; }
.decide-card--light p { color: var(--ink-soft); }
.decide-card--accent p { color: #064534; }

/* =====================================================================
   FAQ
===================================================================== */
.faq { background: var(--white); }
.faq > .container > .overline { display: block; margin-bottom: 30px; }
.faq__inner { display: grid; gap: 24px; }
.faq__title {
  font-size: clamp(2.4rem, 10vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.accordion--faq .accordion__item { border-color: var(--line); }
.accordion--faq .accordion__head { color: var(--ink); padding: 22px 2px; }
.accordion--faq .accordion__label { font-size: clamp(1.05rem, 4.5vw, 1.3rem); }
.accordion--faq .accordion__icon { border-color: var(--line); }
.accordion--faq .accordion__icon::before,
.accordion--faq .accordion__icon::after { background: var(--ink); }
.accordion--faq .accordion__item.is-open .accordion__icon::before,
.accordion--faq .accordion__item.is-open .accordion__icon::after { background: var(--white); }
.accordion--faq .accordion__panel-inner { padding: 0 2px 24px; }
.accordion--faq .accordion__panel-inner p { color: var(--muted-dark); }
/* "X" no botão ativo do FAQ */
.accordion--faq .accordion__item.is-open .accordion__icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.accordion--faq .accordion__item.is-open .accordion__icon::after { opacity: 1; transform: translate(-50%, -50%) rotate(-45deg); }

/* =====================================================================
   CTA FINAL + FOOTER
===================================================================== */
.final {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 24px;
  padding: 64px 0 0;
  margin: 10px;
  overflow: hidden;
}
.final .overline { margin-bottom: 26px; }
.final__title {
  font-size: clamp(2.2rem, 9vw, 4rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.final__lead { color: #a8a8b0; font-size: 15px; max-width: 52ch; margin-bottom: 32px; }

.final__form { display: grid; gap: 14px; margin-bottom: 14px; }
/* honeypot anti-spam: fora da tela e fora do fluxo do grid */
.field-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.field { display: block; }
.field input {
  width: 100%;
  font-family: var(--ff);
  font-size: 15px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 16px 18px;
}
.field input::placeholder { color: #7a7a82; }
.field input:focus { outline: none; border-color: var(--accent); }
.final__form .btn { justify-content: center; padding: 17px 22px; }

.final__micro { font-size: 12px; color: #7c7c84; margin-bottom: 30px; }
.final__success {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* footer */
.footer { border-top: 1px solid var(--line-dark); padding-top: 40px; }
.footer__top { display: grid; gap: 30px; margin-bottom: 40px; }
.footer__brand { display: grid; gap: 18px; }
.footer__logo { height: 30px; width: auto; }
.footer__brand p { color: #9a9aa1; font-size: 14px; max-width: 40ch; }
.footer__col h4 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.footer__col a { display: block; color: #9a9aa1; font-size: 14px; padding: 5px 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent); }

.footer__wordmark { padding: 10px 0 4px; }
.footer__wordmark img { width: 100%; filter: invert(1); opacity: 0.96; margin-bottom: 50px; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line-dark);
  padding: 24px 0 40px;
  font-size: 12px;
  color: #6f6f77;
}

/* =====================================================================
   RESPONSIVO — TABLET
===================================================================== */
@media (min-width: 700px) {
  .container { padding-inline: 34px; }
  .section { padding: 90px 0; }

  /* ----- HERO volta ao layout original (tablet/desktop) ----- */
  .header__tag { display: none; }
  .hero__inner {
    display: grid;
    align-items: stretch;
    text-align: left;
    gap: 36px;
    padding-top: 30px;
  }
  .hero__content, .hero__side { display: block; }
  .hero__content > .overline { display: inline-block; }

  .hero__side-text { font-size: 13px; color: #9a9aa1; max-width: 38ch; margin-bottom: 22px; }
  .hero__title { font-size: clamp(2.5rem, 6vw, 3.4rem); line-height: 1.02; margin: 18px 0 24px; }
  .hero__lead { color: #b7b7bd; max-width: 32ch; margin-bottom: 28px; }

  .hero__list { display: grid; grid-template-columns: 1fr; gap: 11px; text-align: left; margin-bottom: 24px; }
  .hero__list li { padding-left: 20px; font-size: 14px; color: #d8d8dc; }
  .hero__list li::before {
    content: "";
    top: 7px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
  }

  .hero__actions { flex-direction: row; flex-wrap: wrap; width: auto; gap: 16px; }
  .hero__actions .btn { width: auto; padding: 15px 22px; }
  .hero__actions .btn--ghost { display: inline-flex; }

  .hero__media img { height: 280px; }

  .accordion__panel-inner { flex-direction: row; gap: 20px; }
  .accordion__thumb { width: 150px; height: 90px; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-right: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: 0; }

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

  .proof__stats { grid-template-columns: 1fr 1fr; }
  .cases__grid { grid-template-columns: repeat(3, 1fr); }
  .carousel__track .case-card { flex-basis: calc((100% - 18px) / 2); }

  .video__inner { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .decide__grid { grid-template-columns: 1fr 1fr; }

  .footer__top { grid-template-columns: 2fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }

  .faq__inner { grid-template-columns: 0.5fr 1fr; align-items: start; }

  .final__form { grid-template-columns: 1fr 1fr auto; align-items: stretch; }
  .final__form .field input { height: 100%; }
}

/* =====================================================================
   RESPONSIVO — DESKTOP
===================================================================== */
@media (min-width: 1000px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__toggle { display: none; }

  /* ----- Header com respiro no topo + menu flutuante ao rolar (somente desktop) ----- */
  .site-header { margin-top: 35px; }
  .site-header.is-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 200;
    background: rgba(10, 10, 11, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-dark);
    animation: headerDrop 0.35s ease;
  }
  .site-header.is-floating .header__inner { height: 64px; }
  /* compensa o espaço do header quando ele vira fixo, evitando "pulo" no conteúdo */
  .hero.has-floating-header { padding-top: 105px; }

  .section { padding: 110px 0; }

  .hero { padding: 0 0 90px; }
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 48px; padding-top: 40px; }
  .hero__title { font-size: clamp(3rem, 4.6vw, 4.2rem); }
  .hero__media img { height: 320px; }

  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { border-bottom: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: 1px solid var(--line); }
  .service-card:nth-child(3n) { border-right: 0; }
  .service-card:nth-last-child(-n+3) { border-bottom: 0; }
  .services__foot { font-size: 1.6rem; }

  .proof__top { grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .proof__stats { gap: 20px; }
  .stat-card { min-height: 175px; }
  .carousel__track .case-card { flex-basis: calc((100% - 36px) / 3); }

  .video__inner { gap: 56px; }
  .video__media img { height: 320px; }

  .accordion__num { font-size: 30px; min-width: 50px; }
}

@media (min-width: 1200px) {
  .hero__title { font-size: 4.4rem; }
}
