/* ==========================================================================
   LP P1 Marketing
   1. Variáveis   2. Base   3. Componentes   4. Seções   5. Animações   6. Responsivo
   ========================================================================== */

/* 1. Variáveis ------------------------------------------------------------ */
:root {
  /* Marca */
  --brand: #0d390a;          /* verde P1 — fundos (sempre com texto branco) */
  --brand-deep: #061d05;
  --brand-light: #145510;
  --brand-accent: #51d147;   /* destaques sobre fundo escuro */

  /* CTA (degradê animado, como na referência) */
  --cta-1: #00e911;
  --cta-2: #36ff00;
  --cta-ink: #0c0c0c;
  --online: #69d77d;

  /* Neutros */
  --black: #000;
  --ink: #0c0c0c;
  --surface: #151515;
  --field: #2a2a2a;
  --field-border: #3a3a3a;
  --line: rgba(255, 255, 255, .1);
  --text: #fff;
  --muted: #8e8e8e;
  --light-bg: #fff;
  --light-ink: #0c0c0c;
  --light-muted: #5f5f5f;
  --error: #ff6b6b;

  /* Destaque do texto (troca conforme o fundo da seção) */
  --hl: var(--brand-accent);

  /* Tipografia */
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand: "Permanent Marker", "Segoe Print", cursive;

  /* Layout */
  --container: 1000px;
  --gutter: 20px;
  --radius-sm: 5px;
  --radius: 10px;
  --radius-lg: 12px;
  --section-y: clamp(72px, 9vw, 110px);
}

/* 2. Base ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; }
strong { font-weight: 700; }

::selection { background: var(--brand-accent); color: var(--ink); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--brand-accent); border-radius: 10px; }

:focus-visible { outline: 2px solid var(--brand-accent); outline-offset: 3px; }

.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;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: var(--section-y); }

.section--light {
  --hl: var(--brand);
  background: var(--light-bg);
  color: var(--light-ink);
}

.hl { color: var(--hl); }

/* 3. Componentes ---------------------------------------------------------- */

/* Etiqueta */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--hl);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.tag svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.tag--pill {
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--hl) 25%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--hl) 8%, transparent);
}

/* Títulos: caixa alta, peso fino + negrito */
.title {
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.5px;
  text-transform: uppercase;
  text-wrap: balance;
}
.title strong { font-weight: 800; }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head--spaced { margin-top: 96px; }
.section-head__sub { margin-top: 14px; color: var(--muted); }

/* Checklist */
.checklist { display: grid; gap: 6px; }
.checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; line-height: 1.45; }
.checklist__icon {
  flex: none; width: 15px; height: 15px; margin-top: 1px;
  fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.checklist--card { gap: 14px; }
.checklist--card li { color: var(--muted); font-size: 15px; }
.checklist--card strong { color: var(--text); font-weight: 600; }
.checklist--card .checklist__icon {
  width: 22px; height: 22px; margin-top: 0; padding: 4px;
  border-radius: 6px; background: color-mix(in srgb, var(--brand-accent) 15%, transparent);
  stroke: var(--brand-accent); stroke-width: 2;
}
.checklist--card .checklist__icon rect { display: none; }

/* Botão CTA */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(-45deg, var(--cta-1), var(--cta-2), var(--cta-1), var(--cta-2), var(--cta-1), var(--cta-2));
  background-size: 800% 400%;
  box-shadow: 0 0 20px -5px rgba(255, 255, 255, .45);
  color: var(--cta-ink);
  font: 600 15px/1.2 var(--font);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s ease;
  animation: cta-gradient 12s cubic-bezier(.62, .28, .23, .99) infinite both;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: cta-pulse 1.5s infinite;
  pointer-events: none;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(.98); }
.btn[disabled] { cursor: wait; opacity: .75; transform: none; }
.btn--block { width: 100%; }
.btn__icon { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Campos */
.input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--field-border);
  border-radius: var(--radius-sm);
  background: var(--field);
  color: var(--text);
  font: 500 14px var(--font);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input::placeholder { color: var(--muted); }
.input:focus, .input--phone:focus-within {
  outline: none;
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-accent) 25%, transparent);
}
.input.is-invalid, .input--phone.is-invalid { border-color: var(--error); }

.input--select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}
.input--select:invalid { color: var(--muted); }
.input--select option { background: var(--surface); color: var(--text); }

.input--phone { display: flex; align-items: center; gap: 10px; padding: 0 0 0 12px; }
.input--phone input {
  flex: 1; min-width: 0; height: 100%; padding: 0 14px 0 0;
  border: 0; background: transparent; color: inherit; font: inherit; outline: none;
}
.input--phone input::placeholder { color: var(--muted); }
.input__prefix {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  padding-right: 10px; border-right: 1px solid var(--field-border);
  color: var(--muted); font-size: 13px;
}
.flag { width: 20px; height: 14px; }

/* 4. Seções --------------------------------------------------------------- */

/* 4.1 Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) 0 clamp(130px, 13vw, 170px);
  background:
    radial-gradient(ellipse at 20% 10%, var(--brand-light) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 90%, var(--brand-deep) 0%, transparent 60%),
    var(--brand);
}
.hero__shape {
  position: absolute;
  opacity: .045;
  pointer-events: none;
  user-select: none;
}
.hero__shape--1 { width: 620px; left: -160px; top: -120px; transform: rotate(-12deg); }
.hero__shape--2 { width: 460px; right: -120px; top: 40px; transform: rotate(14deg); opacity: .035; }
.hero__shape--3 { width: 300px; left: 38%; bottom: -120px; transform: rotate(-4deg); opacity: .03; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
}
.hero__logo { width: 170px; height: auto; margin-bottom: 28px; }
.hero__title {
  font-size: clamp(26px, 3.3vw, 36px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.7px;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero__title strong, .hero__title .hl { font-weight: 800; }
.hero__subtitle { margin: 16px 0 18px; max-width: 460px; color: rgba(255, 255, 255, .85); font-size: 15px; }
.hero .checklist { margin-bottom: 26px; }

/* Card do formulário */
.form-card {
  scroll-margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  background: rgba(8, 8, 8, .92);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
}
.lead-form { display: grid; gap: 10px; }
.field__label { display: block; margin: 4px 0 6px; font-size: 12px; font-weight: 600; line-height: 1.35; }
.lead-form .btn { margin-top: 6px; }
.form__status { min-height: 0; font-size: 13px; line-height: 1.4; text-align: center; }
.form__status:empty { display: none; }
.form__status.is-error { color: var(--error); }
.form__status.is-success { color: var(--brand-accent); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* 4.2 Faixa de prova (faixas cruzadas) */
.proof {
  position: relative;
  z-index: 3;
  height: 150px;
  margin: -85px 0 -65px;
  overflow-x: clip;
  pointer-events: none;
}
.ribbon {
  position: absolute;
  top: 50%;
  left: -10vw;
  width: 120vw;
  padding: 11px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .45);
}
.ribbon--a { background: var(--ink); color: #fff; transform: translateY(-50%) rotate(4deg); }
.ribbon--b { background: var(--brand-accent); color: var(--ink); transform: translateY(-50%) rotate(-1.5deg); }
.ribbon__track { display: flex; width: max-content; }
.ribbon__group { display: flex; flex: none; }
.ribbon__group li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  text-transform: uppercase;
}
.ribbon__group li::after { content: "•"; margin: 0 18px; }
.ribbon.is-running .ribbon__track { animation: marquee var(--marquee-duration, 60s) linear infinite; }
.ribbon--b.is-running .ribbon__track { animation-direction: reverse; }

/* 4.3 Depoimentos */
.testimonials { padding-top: clamp(110px, 12vw, 140px); }
.testimonials .title { color: var(--light-ink); }
.videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  justify-content: center;
  gap: 18px;
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 35%, rgba(81, 209, 71, .22), transparent 60%),
    linear-gradient(160deg, #1b1b1b, #050505);
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .5);
}
.video-card iframe, .video-card video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
.video-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent 55%);
  color: #fff;
  font: 600 12px var(--font);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.video-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--ink);
  transition: transform .25s ease;
}
.video-card__icon svg { width: 24px; height: 24px; fill: currentColor; margin-left: 3px; }
.video-card__play:hover .video-card__icon { transform: scale(1.1); }
.video-card.is-empty .video-card__play { cursor: default; }
.video-card.is-empty .video-card__icon { background: rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .6); }
.video-card.is-empty .video-card__play:hover .video-card__icon { transform: none; }
.video-card:not(.is-empty) .video-card__label { display: none; }

/* 4.4 Quem somos */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 80px);
}
.about__text p { margin-top: 16px; color: var(--muted); font-size: 15px; }
.about__text p strong { color: var(--text); font-weight: 600; }
.about__text .title { margin-bottom: 8px; }

.polaroids { position: relative; display: grid; justify-items: center; padding: 10px 0; }
.polaroid {
  position: relative;
  width: min(260px, 70%);
  padding: 10px 10px 0;
  background: #f7f7f2;
  box-shadow: 0 25px 45px -15px rgba(0, 0, 0, .7);
}
.polaroid--1 { transform: rotate(-4deg); justify-self: start; margin-left: 4%; }
.polaroid--2 { transform: rotate(3.5deg); justify-self: end; margin-top: 6px; margin-right: 4%; }
.polaroid__photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, var(--brand-light), var(--brand) 55%, var(--brand-deep));
}
.polaroid__photo img { width: 100%; height: 100%; object-fit: cover; }
.polaroid__photo .polaroid__placeholder { width: 34%; height: auto; opacity: .35; object-fit: contain; }
.polaroid figcaption {
  padding: 10px 4px 12px;
  color: var(--ink);
  font: 22px/1 var(--font-hand);
  text-align: center;
  text-transform: uppercase;
}
.polaroid::before, .polaroid::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 70px;
  height: 22px;
  background: rgba(210, 210, 200, .75);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
}
.polaroid::before { top: -8px; left: -18px; transform: rotate(-40deg); }
.polaroid::after { right: -18px; bottom: -6px; transform: rotate(-40deg); }

/* 4.5 Método */
.method { overflow: hidden; }
.method-visual {
  position: relative;
  width: min(560px, 100%);
  height: 400px;
  margin: 0 auto;
}
.method-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(81, 209, 71, .28), transparent 65%);
  transform: translate(-50%, -50%);
}
.method-visual__symbol {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 190px;
  transform: translate(-50%, -50%);
}
.method-visual__symbol img {
  width: 100%;
  filter: drop-shadow(0 0 18px rgba(81, 209, 71, .8)) drop-shadow(0 0 50px rgba(81, 209, 71, .45));
}
.step {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.step__num { color: var(--brand-accent); font-size: 11px; font-weight: 700; }
.step::after {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .6), transparent);
}
.step--1 { left: 0; top: 16%; }
.step--3 { left: 0; top: 62%; }
.step--2, .step--4 { right: 0; flex-direction: row-reverse; }
.step--2 { top: 16%; }
.step--4 { top: 62%; }
.step--1::after, .step--3::after { order: 2; }
.step--2::after, .step--4::after { background: linear-gradient(270deg, rgba(255, 255, 255, .6), transparent); }
.step--2 .step__num, .step--4 .step__num { order: 1; }

.method-visual__pill {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(81, 209, 71, .35);
  border-radius: var(--radius);
  background: rgba(13, 57, 10, .55);
  box-shadow: 0 0 38px 0 rgba(81, 209, 71, .45);
  backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 600;
  translate: -50% 0;
  animation: float 2.5s ease-in-out infinite;
}
.method-visual__pill svg { width: 18px; height: 18px; fill: none; stroke: var(--brand-accent); stroke-width: 1.8; stroke-linecap: round; }
.method-visual__pill .step__num { margin-right: 6px; }

/* Carrossel */
.carousel { --card-w: min(640px, 86vw); position: relative; }
.carousel__track {
  display: flex;
  gap: 20px;
  padding: 6px max(var(--gutter), calc((100vw - var(--card-w)) / 2)) 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline-offset: -4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 var(--card-w);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1a1a1a, var(--surface) 60%);
  scroll-snap-align: center;
  transition: opacity .4s ease;
}
.js .service-card:not(.is-active) { opacity: .45; }
.service-card__num { color: var(--brand-accent); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.service-card__title {
  margin: 6px 0 20px;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}
.service-card__media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 40%, rgba(81, 209, 71, .35), transparent 60%),
    linear-gradient(160deg, var(--brand-light), var(--brand-deep));
}
.service-card__media svg {
  width: 72px; height: 72px;
  fill: none; stroke: #fff; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 16px rgba(81, 209, 71, .8));
}
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }

.carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  cursor: pointer;
  translate: 0 -50%;
  transition: background .2s ease, opacity .2s ease;
}
.carousel__arrow:hover { background: var(--brand); }
.carousel__arrow[disabled] { opacity: .3; cursor: default; }
.carousel__arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.carousel__arrow--prev { left: calc(50% - var(--card-w) / 2 - 32px); }
.carousel__arrow--next { right: calc(50% - var(--card-w) / 2 - 32px); }

/* 4.6 Faixa de CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 96px);
  background:
    radial-gradient(ellipse at 50% 0%, var(--brand-light), transparent 70%),
    var(--brand);
  text-align: center;
}
.cta-band__shape {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 440px;
  opacity: .06;
  transform: rotate(-10deg);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 760px; }
.cta-band p { margin: 18px auto 28px; max-width: 620px; color: rgba(255, 255, 255, .85); font-size: 15px; }
.cta-band__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 28px; }
.online { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; }
.online__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--online);
  animation: online-pulse 1s infinite;
}

/* 4.7 FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 80px);
}
.faq__head { position: sticky; top: 32px; }
.faq__head p { margin-top: 14px; color: var(--muted); font-size: 14px; }
.faq__list { display: grid; gap: 10px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: color-mix(in srgb, var(--brand-accent) 40%, transparent); }
.faq__item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__badge {
  flex: none;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--brand-accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.faq__q { flex: 1; }
.faq__arrow {
  flex: none; width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s ease;
}
.faq__item[open] .faq__arrow { transform: rotate(180deg); }
.faq__answer { padding: 0 18px 18px 52px; color: var(--muted); font-size: 14px; }

/* 4.8 Rodapé */
.footer { padding-block: 32px; border-top: 1px solid var(--line); background: var(--black); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer__logo { width: 130px; height: auto; }
.socials { display: flex; gap: 10px; }
.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: background .2s ease;
}
.socials a:hover { background: var(--brand); }
.socials svg { width: 17px; height: 17px; }
.icon-stroke { fill: none; stroke: currentColor; stroke-width: 1.8; }
.icon-fill { fill: currentColor; }
.footer__copy { color: var(--muted); font-size: 12px; }
.footer__copy strong { color: var(--text); font-weight: 500; }

/* 5. Animações ------------------------------------------------------------ */
@keyframes cta-gradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(54, 255, 0, .45); }
  70% { box-shadow: 0 0 0 18px rgba(54, 255, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(54, 255, 0, 0); }
}
@keyframes online-pulse {
  0% { box-shadow: 0 0 0 0 rgba(105, 215, 125, .6); }
  70% { box-shadow: 0 0 0 10px rgba(105, 215, 125, 0); }
  100% { box-shadow: 0 0 0 0 rgba(105, 215, 125, 0); }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Revelar ao rolar (só com JS ativo — sem JS tudo fica visível) */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* 6. Responsivo ----------------------------------------------------------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { max-width: 620px; }
  .form-card { width: 100%; max-width: 520px; }

  .about__grid { grid-template-columns: 1fr; }
  .polaroids { max-width: 420px; width: 100%; margin: 0 auto; }

  .faq__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; text-align: center; }

  .carousel__arrow { display: none; }
}

@media (max-width: 600px) {
  :root { --gutter: 16px; }

  .hero__logo { width: 140px; margin-bottom: 22px; }

  .proof { height: 120px; margin: -70px 0 -55px; }
  .ribbon { padding: 9px 0; }
  .ribbon__group li { font-size: 12px; }
  .ribbon__group li::after { margin: 0 12px; }

  .videos {
    grid-template-columns: repeat(3, 72%);
    justify-content: start;
    margin-inline: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .videos::-webkit-scrollbar { display: none; }
  .video-card { scroll-snap-align: center; }

  .polaroid figcaption { font-size: 18px; }

  .method-visual { height: auto; padding-top: 230px; }
  .method-visual::before, .method-visual__symbol { top: 110px; }
  .method-visual::before { width: 260px; height: 260px; }
  .method-visual__symbol { width: 140px; }
  .method-visual__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .step {
    position: static;
    justify-content: center;
    flex-direction: row !important;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
  }
  .step::after { display: none; }
  .step .step__num { order: 0 !important; }
  .method-visual__pill { position: relative; left: auto; bottom: auto; display: flex; justify-content: center; margin-top: 16px; translate: none; }
  .section-head--spaced { margin-top: 72px; }

  .service-card { grid-template-columns: 1fr; padding: 24px; }
  .service-card__media { order: -1; height: 140px; }

  .footer__inner { flex-direction: column; text-align: center; }
}

/* Bloqueia seleção de texto na página inteira */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Mas mantém a seleção funcionando nos campos do formulário */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
