:root {
  --black: #000;
  --bg: #050505;
  --panel: rgba(255,255,255,.065);
  --panel-strong: rgba(255,255,255,.10);
  --line: rgba(255,255,255,.12);
  --text: #fff;
  --muted: rgba(255,255,255,.68);
  --soft: rgba(255,255,255,.48);
  --orange: #ff6b1a;
  --orange-2: #ff8a3d;
  --green: #25d366;
  --blue: #1e90ff;
  --red: #ff4444;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,107,26,.18), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(30,144,255,.13), transparent 32%),
    linear-gradient(180deg, #070707 0%, #000 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 16%, black 0%, transparent 78%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.hero-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .45;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  z-index: 80;
  width: 260px;
  height: 260px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,107,26,.18), transparent 66%);
  mix-blend-mode: screen;
}

.lp-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(3,3,4,.72);
  backdrop-filter: blur(20px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img { width: 132px; height: auto; }
.menu {
  display: none;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 800;
}
.menu a:hover { color: #fff; }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.nav-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff3d00);
  box-shadow: 0 18px 48px rgba(255,107,26,.26);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #129c4b);
  box-shadow: 0 18px 48px rgba(37,211,102,.24);
}
.btn-outline {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  color: #fff;
}
.nav-cta:hover,
.btn:hover { transform: translateY(-2px); }

.guincho-menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #fff;
}
.guincho-menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: .22s ease;
}
.guincho-menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.guincho-menu-toggle span:nth-child(3) { transform: translateY(6px); }
.guincho-menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.guincho-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.guincho-menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }

.section {
  position: relative;
  padding: 76px 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 840px;
}

.hero {
  min-height: 100vh;
  padding: 112px 0 72px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 34px;
}

.pill,
.kicker,
.proof-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.pill span,
.kicker i,
.proof-label i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
  animation: pulse 1.45s infinite;
}
.danger { color: var(--red); }
.success { color: var(--green); }

h1, h2, h3, p { margin-top: 0; }
h1,
.section-head h2,
.final-cta h2,
.pressure h3 {
  font-family: var(--font-display);
  letter-spacing: .5px;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(52px, 13vw, 74px);
  line-height: .91;
}
em {
  color: var(--orange);
  font-style: normal;
}
.hero-lead {
  max-width: 680px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.6;
}

.hero-bullets {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}
.hero-bullets div {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.hero-bullets b {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}
.hero-bullets span {
  color: var(--muted);
  font-size: 14px;
}
.hero-actions,
.section-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}
.truck-card {
  position: absolute;
  inset: 26px 0 44px;
  overflow: hidden;
  border: 1px solid rgba(255,107,26,.28);
  border-radius: 34px;
  background: #111;
  box-shadow: 0 44px 120px rgba(0,0,0,.64), 0 0 60px rgba(255,107,26,.13);
}
.truck-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), transparent 56%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.84));
}
.truck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(285px, 78vw);
  min-height: 455px;
  padding: 18px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255,107,26,.20), transparent 34%),
    linear-gradient(180deg, rgba(18,20,25,.92), rgba(4,5,8,.94));
  box-shadow: 0 34px 100px rgba(0,0,0,.68);
}
.phone-status {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
}
.caller-ripple {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  margin: 42px auto 18px;
  border-radius: 50%;
  background: rgba(255,107,26,.16);
  box-shadow: 0 0 0 12px rgba(255,107,26,.05), 0 0 48px rgba(255,107,26,.25);
}
.caller-ripple span { font-size: 40px; }
.caller-label,
.caller-city {
  text-align: center;
  color: var(--muted);
}
.phone h2 {
  margin-bottom: 8px;
  text-align: center;
  font-size: 26px;
}
.audio-bars {
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 28px 0;
}
.audio-bars i {
  width: 8px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
}
.effects-ready .audio-bars i { animation: wave 1s ease-in-out infinite; }
.effects-ready .audio-bars i:nth-child(2n) { animation-delay: .15s; }
.effects-ready .audio-bars i:nth-child(3n) { animation-delay: .3s; }
.phone-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.phone-actions button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
}
.phone-actions button:first-child { background: var(--red); }
.phone-actions button:last-child { background: var(--green); }
.effects-ready .phone {
  animation: phoneMotion 4s ease-in-out infinite;
  will-change: transform;
}
.effects-ready .phone-actions button:last-child { animation: pulseScale 1.4s infinite; }

.float-badge {
  position: absolute;
  z-index: 2;
  max-width: 188px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(8,10,14,.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  font-size: 13px;
}
.float-badge b,
.float-badge span { display: block; }
.float-badge span { color: var(--muted); }
.badge-top { top: 10px; right: 4px; }
.badge-bottom { bottom: 0; left: 0; }

.sirene {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,68,68,.20), transparent 68%);
}
.effects-ready .sirene { animation: breathe 1.5s ease-in-out infinite; }
.effects-ready .hero.is-animation-paused .phone,
.effects-ready .hero.is-animation-paused .audio-bars i,
.effects-ready .hero.is-animation-paused .phone-actions button:last-child,
.effects-ready .hero.is-animation-paused .sirene {
  animation-play-state: paused;
}
.sirene-one { top: 10%; left: -120px; }
.sirene-two { right: -130px; top: 28%; background: radial-gradient(circle, rgba(255,107,26,.20), transparent 68%); }

.section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(40px, 10vw, 62px);
  line-height: .95;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.pain-grid,
.desire-grid {
  display: grid;
  gap: 16px;
}
.pain-card,
.tech-card,
.desire-card,
.tension-box,
.challenge,
.trust-note,
.summary-card,
.ads-carousel,
.today-card,
.confront {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(255,107,26,.10), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.032));
  box-shadow: 0 30px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.pain-card {
  min-height: 252px;
  padding: 22px;
  border-radius: 24px;
}
.pain-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255,68,68,.12);
  font-size: 27px;
  box-shadow: 0 0 0 10px rgba(255,68,68,.035);
}
.pain-card:hover .pain-icon { animation: shake .32s ease; }
.pain-card h3 {
  font-size: 20px;
  line-height: 1.18;
}
.pain-card p {
  color: var(--muted);
  line-height: 1.5;
}
.pain-card strong {
  display: block;
  margin-top: 16px;
  color: var(--orange-2);
  font-size: 13px;
}
.big-word {
  position: absolute;
  inset: 8% 0 auto;
  z-index: -1;
  color: rgba(255,107,26,.035);
  font-family: var(--font-display);
  font-size: 34vw;
  line-height: .75;
  text-align: center;
}

.tension-box {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 24px;
  border-radius: 26px;
  border-color: rgba(255,107,26,.24);
}
.siren-icon { font-size: 42px; animation: shake 1.1s infinite; }
.tension-box h3,
.challenge h3,
.trust-note h3 {
  font-size: 26px;
}
.tension-box p,
.challenge p,
.trust-note p {
  color: var(--muted);
  line-height: 1.6;
}
.section-cta {
  margin-top: 28px;
  text-align: center;
}
.section-cta p {
  color: #fff;
  font-weight: 850;
  font-size: 20px;
}
.section-cta small { color: var(--muted); }

.proof-grid { display: grid; gap: 22px; }
.ads-carousel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  margin-top: 12px;
  padding: 20px;
  border-radius: 26px;
}
.ads-slide {
  position: absolute;
  inset: 20px;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.ads-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}
.ads-proof-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 22px 64px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.75);
}
.ads-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}
.ads-top strong { color: #fff; }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.metric-grid div {
  padding: 15px;
  border-radius: 17px;
  background: rgba(255,255,255,.06);
}
.metric-grid b {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 34px;
}
.metric-grid span,
.ads-slide small { color: var(--muted); }
.bar-chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-bottom: 18px;
}
.bar-chart i {
  flex: 1;
  min-width: 10px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--orange), rgba(255,107,26,.22));
}
.bar-chart i:nth-child(1){height:32%}.bar-chart i:nth-child(2){height:58%}.bar-chart i:nth-child(3){height:44%}.bar-chart i:nth-child(4){height:76%}.bar-chart i:nth-child(5){height:62%}.bar-chart i:nth-child(6){height:84%}.bar-chart i:nth-child(7){height:54%}.bar-chart i:nth-child(8){height:70%}.bar-chart i:nth-child(9){height:90%}.bar-chart i:nth-child(10){height:68%}
.dots {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}
.dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
}
.dots button.is-active {
  width: 30px;
  background: var(--orange);
}
.today-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 24px;
  border-top: 2px solid var(--orange);
}
.today-card > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,107,26,.16);
  color: var(--orange);
}
.today-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: .9;
}
.today-card small { color: var(--muted); }
.today-card em {
  margin-left: auto;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  animation: pulse 1s infinite;
}
.proof-label.orange { color: var(--orange); }
.tech-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.tech-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  overflow: hidden;
}
.tech-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(.28);
  transform-origin: bottom;
  transition: transform .25s ease;
}
.tech-card:hover::before,
.tech-card.highlight::before { transform: scaleY(1); }
.tech-card.highlight {
  border-color: rgba(255,107,26,.34);
  background: rgba(255,107,26,.09);
}
.tech-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,107,26,.12);
}
.tech-card h3 {
  margin-bottom: 4px;
  font-size: 17px;
}
.tech-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.challenge {
  margin-top: 28px;
  padding: 24px;
  border-radius: 26px;
  border-color: rgba(255,107,26,.28);
}
.challenge h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.desire-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg width='90' height='78' viewBox='0 0 90 78' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 1h44l22 38-22 38H23L1 39 23 1Z' fill='none' stroke='rgba(255,107,26,.20)'/%3E%3C/svg%3E");
}
.desire-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
}
.desire-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .25s ease;
}
.desire-card:hover::after { transform: scaleX(1); }
.desire-card b {
  position: absolute;
  right: 18px;
  top: 10px;
  color: rgba(255,255,255,.055);
  font-family: var(--font-display);
  font-size: 76px;
}
.desire-card > span {
  display: block;
  margin-bottom: 22px;
  font-size: 32px;
  transition: transform .25s ease;
}
.desire-card:hover > span { transform: rotate(-5deg) scale(1.1); }
.desire-card p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.45;
}
.desire-card.wide {
  min-height: auto;
  border-color: rgba(255,107,26,.25);
}
.desire-card.wide h3 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  overflow: hidden;
  margin: 0 0 24px;
  padding: 14px 0;
  border-block: 1px solid rgba(37,211,102,.16);
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 80px;
  background: linear-gradient(90deg, #050505, transparent);
}
.ticker::after {
  left: auto;
  right: 0;
  transform: rotate(180deg);
}
.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  color: rgba(255,255,255,.74);
  font-weight: 800;
  animation: ticker 35s linear infinite;
}
.ticker.is-animation-paused .ticker-track { animation-play-state: paused; }
.ticker-track span { white-space: nowrap; }
.ticker-track span::first-letter { color: var(--green); }
.audio-featured-grid,
.audio-compact-grid {
  display: grid;
  gap: 14px;
}

.audio-featured-grid { margin-bottom: 14px; }
.audio-compact-grid { margin-bottom: 24px; }

.testimonial-audio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 12% 0%, rgba(37,211,102,.11), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 22px 64px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.07);
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.testimonial-audio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.045), transparent 34%);
}

.testimonial-audio-card.is-playing {
  border-color: rgba(37,211,102,.46);
  box-shadow: 0 26px 72px rgba(0,0,0,.4), 0 0 34px rgba(37,211,102,.08), inset 0 1px 0 rgba(255,255,255,.09);
}

.testimonial-audio-card.featured {
  min-height: 258px;
  padding: 22px;
  border-radius: 22px;
}

.audio-result-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 11px;
  border: 1px solid rgba(37,211,102,.28);
  border-radius: 999px;
  color: #82f5aa;
  background: rgba(37,211,102,.08);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-audio-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.16;
}

.testimonial-audio-card.featured > p {
  position: relative;
  z-index: 1;
  min-height: 66px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.audio-player-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px auto 1fr;
  align-items: center;
  gap: 12px;
}

.audio-play-button {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(86,255,145,.42);
  border-radius: 50%;
  color: #041108;
  background: linear-gradient(145deg, #42e87d, #1dbd58);
  box-shadow: 0 12px 30px rgba(37,211,102,.2), inset 0 1px 0 rgba(255,255,255,.32);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.audio-play-button:hover { transform: translateY(-2px); }
.audio-play-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.audio-play-button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.audio-play-button .pause-icon { display: none; }
.is-playing .audio-play-button .play-icon { display: none; }
.is-playing .audio-play-button .pause-icon { display: block; }

.audio-player-label {
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.testimonial-wave {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  overflow: hidden;
  color: rgba(255,255,255,.24);
}

.testimonial-wave i {
  width: 3px;
  height: 8px;
  flex: 0 0 3px;
  border-radius: 3px;
  background: currentColor;
  transform-origin: center;
}

.testimonial-wave i:nth-child(2n) { height: 16px; }
.testimonial-wave i:nth-child(3n) { height: 24px; }
.is-playing .testimonial-wave { color: var(--green); }
.effects-ready .is-playing .testimonial-wave i { animation: testimonialWave .75s ease-in-out infinite alternate; }
.effects-ready .is-playing .testimonial-wave i:nth-child(2n) { animation-delay: .12s; }
.effects-ready .is-playing .testimonial-wave i:nth-child(3n) { animation-delay: .24s; }

.audio-progress {
  position: relative;
  z-index: 1;
  height: 3px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
}

.audio-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ff9b54);
  box-shadow: 0 0 14px rgba(255,107,26,.45);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.testimonial-audio-card.compact {
  min-height: 78px;
  display: grid;
  grid-template-columns: 38px minmax(88px, auto) 1fr;
  grid-template-rows: 1fr 3px;
  align-items: center;
  gap: 0 10px;
  padding: 11px 12px 0;
  border-radius: 17px;
}

.testimonial-audio-card.compact .audio-play-button {
  width: 38px;
  height: 38px;
}

.testimonial-audio-card.compact .audio-play-button svg {
  width: 17px;
  height: 17px;
}

.compact-audio-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.compact-audio-copy strong,
.compact-audio-copy small { display: block; }
.compact-audio-copy strong { font-size: 12.5px; }
.compact-audio-copy small { margin-top: 2px; color: var(--soft); font-size: 10.5px; }
.testimonial-audio-card.compact .testimonial-wave { height: 24px; gap: 2px; }
.testimonial-audio-card.compact .testimonial-wave i { width: 2px; flex-basis: 2px; }
.testimonial-audio-card.compact .audio-progress { grid-column: 1 / -1; align-self: end; margin: 0; }

@media (min-width: 720px) {
  .audio-featured-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .audio-compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .audio-compact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.summary-card {
  margin-top: 24px;
  padding: 26px;
  border-radius: 28px;
  border-color: rgba(37,211,102,.25);
  background:
    linear-gradient(180deg, rgba(37,211,102,.14), rgba(37,211,102,.045));
  text-align: center;
}
.summary-card strong {
  display: block;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 92px;
  line-height: .9;
}
.summary-card p {
  max-width: 650px;
  margin: 6px auto;
  font-size: 20px;
  font-weight: 850;
}
.summary-card small { color: var(--muted); }

.volume-proof-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 28px;
  padding: 30px 28px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255,107,26,.10), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(37,211,102,.12), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 34px 100px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.volume-proof-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .34;
  mask-image: radial-gradient(circle at 50% 36%, black 0%, transparent 78%);
}

.volume-proof-section::after {
  content: "216K+";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
  z-index: -3;
  color: rgba(37,211,102,.045);
  font-size: clamp(92px, 14vw, 220px);
  font-weight: 950;
  letter-spacing: -10px;
  line-height: .82;
  pointer-events: none;
}

.volume-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(22px);
}

.volume-glow.one {
  width: 420px;
  height: 420px;
  left: -210px;
  top: 18px;
  background: radial-gradient(circle, rgba(37,211,102,.14), transparent 68%);
}

.volume-glow.two {
  width: 400px;
  height: 400px;
  right: -190px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(255,107,26,.09), transparent 68%);
}

.volume-head {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
}

.volume-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #35e978;
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.volume-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(37,211,102,.14);
}

.volume-title {
  max-width: 860px;
  margin: 0 auto 12px;
  color: #fff;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 950;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0,0,0,.48);
}

.volume-title span {
  color: var(--green);
  text-shadow: 0 0 34px rgba(37,211,102,.28);
}

.volume-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,.70);
  font-size: clamp(14.5px, 1.12vw, 16px);
  line-height: 1.55;
  text-wrap: balance;
}

.volume-subtitle strong {
  color: #fff;
}

.volume-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.scale-card {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  padding: 17px 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 16% 0%, rgba(37,211,102,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 22px 54px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}

.scale-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 45px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,211,102,.60), transparent);
  opacity: .7;
}

.scale-card small {
  display: inline-flex;
  margin-bottom: 20px;
  color: #35e978;
  font-size: 10.5px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.scale-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(27px, 2.35vw, 36px);
  line-height: .92;
  font-weight: 950;
  letter-spacing: -.8px;
}

.scale-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13.5px;
  line-height: 1.45;
}

.volume-note {
  max-width: 980px;
  margin: 0 auto 18px;
  padding: 16px 19px;
  border-radius: 20px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(37,211,102,.12), rgba(255,255,255,.030));
  border: 1px solid rgba(37,211,102,.18);
  box-shadow:
    0 18px 46px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.volume-note p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14.5px;
  line-height: 1.58;
}

.volume-note strong {
  color: #fff;
}

.volume-note .hot {
  color: #35e978;
  font-weight: 950;
}

.volume-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.volume-button {
  min-height: 54px;
  padding: 0 12px 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #041107;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(90deg, #22c55e, #35e978);
  box-shadow:
    0 24px 58px rgba(37,211,102,.22),
    inset 0 1px 0 rgba(255,255,255,.30);
  font-size: 15px;
  font-weight: 950;
  transition: .22s ease;
}

.volume-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 76px rgba(37,211,102,.28),
    inset 0 1px 0 rgba(255,255,255,.34);
}

.volume-button span {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(4,17,7,.14);
  color: #041107;
  font-size: 20px;
  flex: 0 0 auto;
}

.volume-mini {
  color: rgba(255,255,255,.70);
  font-size: 15px;
  font-weight: 750;
}

@media (max-width: 980px) {
  .volume-proof-section {
    padding: 34px 22px 28px;
  }

  .volume-scale {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .volume-proof-section {
    margin-top: 22px;
    padding: 30px 16px 24px;
    border-radius: 26px;
  }

  .volume-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .scale-card {
    min-height: auto;
  }

  .volume-button {
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
  }

  .volume-mini {
    width: 100%;
    text-align: center;
  }
}

.confront-grid {
  display: grid;
  gap: 14px;
}
.confront {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
}
.problem,
.solution {
  padding: 16px;
  border-radius: 18px;
}
.problem { background: rgba(255,68,68,.10); }
.solution { background: rgba(37,211,102,.10); }
.problem span,
.solution span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
}
.problem b,
.solution b { display: block; margin-bottom: 6px; }
.problem p,
.solution p { margin: 0; color: var(--muted); line-height: 1.45; }
.confront > i {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 28px;
  font-style: normal;
  transform: rotate(90deg);
}
.pressure {
  max-width: 900px;
  margin: 36px auto;
  text-align: center;
}
.pressure h3 {
  margin-bottom: 10px;
  font-size: clamp(42px, 10vw, 70px);
  line-height: .94;
}
.pressure p { color: var(--muted); font-size: 18px; }
.trust-note {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  border-radius: 24px;
}
.trust-note > span {
  font-size: 42px;
}
.trust-note b {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: #07140d;
  background: var(--green);
  font-size: 13px;
}
.final-cta {
  position: relative;
  isolation: isolate;
  margin-top: 34px;
  padding: 30px 22px;
  overflow: hidden;
  border-radius: 28px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.16) 0 1px, transparent 1px 12px),
    #ff6b1a;
  color: #050505;
  text-align: center;
  box-shadow: 0 34px 100px rgba(255,107,26,.34);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 2px solid rgba(255,107,26,.55);
  border-radius: inherit;
  animation: ringPulse 1.8s infinite;
}
.final-cta h2 {
  margin-bottom: 8px;
  color: #050505;
  font-size: clamp(48px, 12vw, 78px);
  line-height: .92;
}
.final-cta p {
  max-width: 680px;
  margin: 0 auto 22px;
  color: rgba(0,0,0,.72);
  font-size: 18px;
  font-weight: 800;
}
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  max-width: 520px;
  padding: 0 20px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-weight: 950;
}
.final-cta small {
  display: block;
  margin-top: 14px;
  color: rgba(0,0,0,.68);
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,90,20,.13), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(37,99,235,.11), transparent 32%),
    linear-gradient(180deg, #050608 0%, #020203 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
}
.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  gap: 30px;
  padding: 46px 0 30px;
}
.footer-logo { display: inline-flex; margin-bottom: 18px; }
.footer-logo img { width: 150px; height: auto; }
.footer-brand p {
  max-width: 470px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.62;
}
.footer-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 800;
}
.footer-nav,
.footer-locations { display: grid; align-content: start; gap: 10px; }
.footer-nav h2,
.footer-locations h2 {
  margin: 0 0 6px;
  color: #ff8a3d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.footer-nav a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.35;
}
.footer-nav a:hover { color: #fff; }
.footer-locations address {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-style: normal;
}
.footer-locations strong {
  display: block;
  margin-bottom: 5px;
}
.footer-locations span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}
.footer-bottom {
  display: grid;
  gap: 0;
  padding: 0 0 30px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer-legal {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.footer-legal strong { color: rgba(255,255,255,.78); }
.footer-copy {
  margin: 0;
  padding-top: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse { 50% { opacity: .45; transform: scale(.88); } }
@keyframes pulseScale { 50% { transform: scale(1.08); } }
@keyframes breathe { 50% { transform: scale(1.12); opacity: .65; } }
@keyframes phoneMotion {
  0%, 100% { transform: translate(-50%, -50%) translate3d(0, 0, 0); }
  50% { transform: translate(-50%, -50%) translate3d(0, -12px, 0); }
  90% { transform: translate(-50%, -50%) translate3d(-3px, -3px, 0); }
  92% { transform: translate(-50%, -50%) translate3d(3px, -2px, 0); }
  94% { transform: translate(-50%, -50%) translate3d(-2px, -1px, 0); }
}
@keyframes wave { 50% { transform: scaleY(2.35); } }
@keyframes testimonialWave { to { transform: scaleY(.42); opacity: .62; } }
@keyframes shake { 0%,100%{transform:translateX(0)}25%{transform:translateX(-2px)}75%{transform:translateX(2px)} }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes ringPulse { to { transform: scale(1.04); opacity: 0; } }
@media (min-width: 720px) {
  .container { width: min(100% - 52px, 1180px); }
  .hero-actions,
  .section-cta {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .hero-actions { justify-content: flex-start; }
  .pain-grid,
  .desire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .desire-card.wide {
    grid-column: 1 / -1;
  }
  .confront {
    grid-template-columns: 1fr 54px 1fr;
    align-items: stretch;
  }
  .confront > i { transform: none; }
  .trust-note {
    grid-template-columns: 64px 1fr;
  }
  .footer-inner {
    grid-template-columns: 1.3fr .9fr .75fr 1fr;
    gap: 38px;
  }
}

@media (min-width: 980px) {
  .menu { display: flex; }
  .guincho-menu-toggle { display: none; }
  .brand img { width: 150px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
    align-items: center;
  }
  .hero-bullets {
    max-width: 610px;
  }
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .desire-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .desire-card.wide {
    grid-column: span 3;
  }
}

@media (max-width: 979px) {
  .nav-cta { display: none; }
  .lp-header .nav > .guincho-menu-toggle {
    display: grid !important;
    flex: 0 0 44px;
    visibility: visible;
    opacity: 1;
    z-index: 2;
  }
  .menu {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    z-index: 80;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(5,6,8,.96);
    box-shadow: 0 26px 80px rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .22s ease;
  }
  .menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.045);
  }
}

@media (max-width: 520px) {
  .container { width: min(100% - 26px, 1180px); }
  .nav { height: 66px; }
  .brand img { width: 118px; }
  .hero { padding-top: 92px; }
  .hero-visual { min-height: 515px; }
  .truck-card { inset: 34px 0 70px; border-radius: 26px; }
  .phone { width: min(260px, 82vw); min-height: 430px; }
  .float-badge { font-size: 12px; max-width: 160px; }
  .badge-top { right: 0; }
  .badge-bottom { left: 0; bottom: 18px; }
  .section { padding: 62px 0; }
  .ads-carousel { min-height: 420px; }
  .ads-top { display: grid; }
  .metric-grid { grid-template-columns: 1fr; }
  .today-card { align-items: flex-start; }
  .today-card em { display: none; }
  .final-cta { padding: 26px 16px; }
  .effects-ready .phone,
  .effects-ready .audio-bars i,
  .effects-ready .phone-actions button:last-child,
  .effects-ready .sirene {
    animation: none;
    will-change: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-canvas,
  .cursor-glow { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Ajuste de escala visual para manter a landing no mesmo padrao profissional da home. */
.section {
  padding: 58px 0;
  contain-intrinsic-size: 680px;
}

.hero {
  min-height: auto;
  padding: 102px 0 54px;
}

.hero-grid {
  gap: 28px;
}

h1 {
  max-width: 640px;
  margin: 14px 0 14px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  font-size: clamp(15px, 1.22vw, 17px);
  line-height: 1.55;
}

.pill,
.kicker,
.proof-label {
  font-size: 10.5px;
  letter-spacing: 1.45px;
}

.hero-bullets {
  gap: 10px;
  margin: 20px 0;
}

.hero-bullets div {
  padding: 12px 14px;
  border-radius: 15px;
}

.hero-bullets b {
  font-size: 14px;
}

.hero-bullets span {
  font-size: 13px;
}

.btn,
.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
}

.hero-visual {
  min-height: 470px;
}

.truck-card {
  inset: 22px 0 36px;
  border-radius: 28px;
}

.phone {
  width: min(250px, 76vw);
  min-height: 385px;
  padding: 16px;
  border-radius: 28px;
}

.caller-ripple {
  width: 82px;
  height: 82px;
  margin: 30px auto 14px;
}

.caller-ripple span {
  font-size: 32px;
}

.phone h2 {
  font-size: 22px;
}

.audio-bars {
  height: 42px;
  margin: 20px 0;
}

.phone-actions button {
  width: 50px;
  height: 50px;
  font-size: 19px;
}

.float-badge {
  max-width: 166px;
  padding: 11px 13px;
  border-radius: 15px;
  font-size: 12px;
}

.sirene {
  width: 250px;
  height: 250px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-head p {
  max-width: 700px;
  margin-inline: auto;
  font-size: 15.5px;
  line-height: 1.55;
}

.pain-grid,
.desire-grid,
.tech-list {
  gap: 14px;
}

.pain-card {
  min-height: 208px;
  padding: 18px;
  border-radius: 20px;
}

.pain-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 15px;
  font-size: 23px;
}

.pain-card h3 {
  font-size: 17px;
  line-height: 1.2;
}

.pain-card p {
  font-size: 14px;
  line-height: 1.45;
}

.pain-card strong {
  margin-top: 12px;
  font-size: 12px;
}

.tension-box,
.challenge,
.trust-note,
.summary-card,
.confront {
  border-radius: 22px;
}

.tension-box,
.challenge,
.trust-note {
  padding: 20px;
}

.siren-icon,
.trust-note > span {
  font-size: 34px;
}

.tension-box h3,
.challenge h3,
.trust-note h3 {
  font-size: 22px;
  line-height: 1.16;
}

.tension-box p,
.challenge p,
.trust-note p {
  font-size: 14.5px;
  line-height: 1.55;
}

.section-cta {
  margin-top: 22px;
}

.section-cta p {
  font-size: 17px;
}

.proof-grid {
  gap: 18px;
}

.ads-carousel {
  min-height: 318px;
  padding: 18px;
  border-radius: 22px;
}

.ads-slide {
  inset: 18px;
}

.metric-grid {
  gap: 10px;
  margin: 18px 0;
}

.metric-grid div {
  padding: 12px;
  border-radius: 14px;
}

.metric-grid b {
  font-size: 27px;
}

.bar-chart {
  height: 74px;
}

.today-card {
  padding: 16px;
  border-radius: 20px;
}

.today-card strong {
  font-size: 36px;
}

.tech-card {
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 17px;
}

.tech-card span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.tech-card h3 {
  font-size: 15.5px;
}

.tech-card p {
  font-size: 13px;
}

.desire-card {
  min-height: 172px;
  padding: 19px;
  border-radius: 20px;
}

.desire-card b {
  font-size: 56px;
}

.desire-card > span {
  margin-bottom: 16px;
  font-size: 27px;
}

.desire-card p {
  font-size: 15.5px;
  line-height: 1.42;
}

.desire-card.wide h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.ticker {
  margin-bottom: 20px;
  padding: 11px 0;
}

.summary-card {
  padding: 22px;
}

.summary-card strong {
  font-size: clamp(56px, 7vw, 76px);
}

.summary-card p {
  font-size: 17px;
}

.problem,
.solution {
  padding: 14px;
  border-radius: 16px;
}

.confront {
  padding: 14px;
}

.confront > i {
  font-size: 23px;
}

.pressure {
  margin: 28px auto;
}

.pressure h3 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}

.pressure p {
  font-size: 15.5px;
}

.final-cta {
  margin-top: 28px;
  padding: 28px 22px;
  border-radius: 24px;
}

.final-cta h2 {
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1;
}

.final-cta p {
  font-size: 15.5px;
}

.final-cta a {
  min-height: 52px;
  max-width: 460px;
  font-size: 14px;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  }

  .section {
    padding: 62px 0;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 88px 0 42px;
  }

  h1 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .hero-lead {
    font-size: 14.5px;
  }

  .section-head h2 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .section-head p {
    font-size: 14.5px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .phone {
    width: min(236px, 78vw);
    min-height: 360px;
  }

  .ads-carousel {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 82px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .truck-card {
    inset: 30px 0 64px;
  }

  .phone {
    width: min(232px, 80vw);
    min-height: 356px;
  }

  .caller-ripple {
    width: 74px;
    height: 74px;
    margin-top: 24px;
  }

  .float-badge {
    max-width: 146px;
    padding: 10px 11px;
    font-size: 11px;
  }

  .pain-card,
  .desire-card {
    min-height: auto;
  }

  .ads-carousel {
    min-height: 386px;
  }

  .final-cta {
    padding: 24px 16px;
  }
}

.final-cta-orange {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.28), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(0,0,0,.20), transparent 28%),
    radial-gradient(circle at 50% 110%, rgba(0,0,0,.34), transparent 36%),
    linear-gradient(135deg, #ff4d0d 0%, #ff6a19 46%, #ff7a24 100%);
}

.final-cta-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -35deg,
      rgba(255,255,255,.13) 0,
      rgba(255,255,255,.13) 1px,
      transparent 1px,
      transparent 16px
    );
  opacity: .36;
}

.final-cta-orange::after {
  content: "AÇÃO";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -38px;
  z-index: -3;
  color: rgba(0,0,0,.105);
  font-size: clamp(120px, 18vw, 310px);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -14px;
  pointer-events: none;
  white-space: nowrap;
}

.cta-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,.14) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: .18;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 78%);
}

.cta-orange-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(22px);
  z-index: -1;
}

.cta-orange-glow.one {
  width: 520px;
  height: 520px;
  left: -220px;
  top: -180px;
  background: radial-gradient(circle, rgba(255,255,255,.24), transparent 68%);
}

.cta-orange-glow.two {
  width: 620px;
  height: 620px;
  right: -260px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(0,0,0,.22), transparent 68%);
}

.final-cta-layout {
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 46px;
  align-items: center;
}

.final-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(0,0,0,.78);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.final-cta-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #050506;
  box-shadow: 0 0 0 7px rgba(0,0,0,.12);
}

.final-cta-title {
  max-width: 680px;
  margin: 0;
  color: #090909;
  font-family: var(--font-body);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: .98;
  letter-spacing: -1.8px;
  font-weight: 950;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(255,255,255,.14);
}

.final-cta-title span {
  color: #fff;
  text-shadow:
    0 4px 0 rgba(0,0,0,.14),
    0 18px 44px rgba(0,0,0,.26);
}

.final-cta-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(0,0,0,.78);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  font-weight: 780;
}

.final-cta-copy strong {
  color: #050506;
  font-weight: 950;
}

.final-cta-action {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.30));
  border: 1px solid rgba(0,0,0,.18);
  box-shadow:
    0 34px 90px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.final-cta-action::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}

.action-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.action-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #050506;
  color: #fff;
  font-size: 25px;
  box-shadow:
    0 18px 44px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.action-top strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.16;
  margin-bottom: 6px;
}

.action-top span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.45;
}

.final-cta-button {
  position: relative;
  z-index: 2;
  min-height: 74px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 16px 0 28px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.14), transparent 32%),
    linear-gradient(180deg, #17181d 0%, #050506 58%, #020203 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 26px 68px rgba(0,0,0,.42),
    0 0 0 1px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.60);
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.final-cta-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 38%, rgba(255,255,255,.035));
  opacity: .9;
}

.final-cta-button::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 84px;
  bottom: 14px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,90,20,.70), transparent);
  opacity: .62;
}

.final-cta-button:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.20);
  box-shadow:
    0 34px 86px rgba(0,0,0,.50),
    0 0 42px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.62);
}

.final-cta-button-text {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.15px;
  line-height: 1.1;
  text-wrap: balance;
  text-shadow: 0 8px 26px rgba(0,0,0,.42);
}

.final-cta-button-arrow {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #050506;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,1), rgba(255,255,255,.84)),
    linear-gradient(180deg, #ffffff, #e9edf3);
  box-shadow:
    0 14px 32px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(0,0,0,.10);
  transition: transform .22s ease, box-shadow .22s ease;
}

.final-cta-button-arrow svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta-button:hover .final-cta-button-arrow {
  transform: translateX(3px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.40),
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -1px 0 rgba(0,0,0,.10);
}

.final-cta-safe {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: rgba(255,255,255,.70);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 780;
  text-align: center;
}

.final-cta-safe b {
  color: #fff;
}

@media (max-width: 980px) {
  .final-cta-orange {
    padding: 66px 0 74px;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .final-cta-title {
    max-width: 900px;
  }

  .final-cta-copy {
    max-width: 780px;
  }

  .final-cta-action {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .final-cta-orange {
    padding: 52px 0 60px;
  }

  .final-cta-title {
    font-size: clamp(31px, 9vw, 42px);
    letter-spacing: -1px;
    line-height: 1.04;
  }

  .final-cta-copy {
    font-size: 15.5px;
  }

  .final-cta-action {
    padding: 20px;
    border-radius: 22px;
  }

  .action-top {
    align-items: flex-start;
  }

  .action-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 22px;
  }

  .action-top strong {
    font-size: 17px;
  }

  .final-cta-button {
    min-height: 66px;
    padding: 0 12px 0 20px;
    border-radius: 21px;
  }

  .final-cta-button::before {
    border-radius: 20px;
  }

  .final-cta-button::after {
    left: 20px;
    right: 74px;
    bottom: 12px;
  }

  .final-cta-button-text {
    font-size: 15px;
    font-weight: 760;
    letter-spacing: -0.1px;
  }

  .final-cta-button-arrow {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .final-cta-button-arrow svg {
    width: 23px;
    height: 23px;
  }
}
