:root {
  --gold: #ffc107;
  --gold-deep: #f5c518;
  --gold-hover: #ffd54f;
  --ink: #121212;
  --ink-soft: #2a2a2a;
  --muted: #5c5c5c;
  --line: #e8e8e8;
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --bg-dark: #0b0b0b;
  --ok: #1faa59;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --container: 1120px;
  --header-h: 78px;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 193, 7, 0.35);
}

.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn-sm {
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 1.05rem 1.7rem;
  font-size: 1.02rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand img {
  width: 118px;
  height: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 1.35rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
  background: var(--bg-dark);
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
  /* evita filete branco por subpixel no mobile */
  transform: scale(1.02);
  transform-origin: center center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.82) 38%,
      rgba(0, 0, 0, 0.45) 68%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(255, 193, 7, 0.16), transparent 55%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 800;
  max-width: 18ch;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

/* Promo */
.promo-strip {
  background: var(--gold);
  color: var(--ink);
}

.promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.95rem 0;
  text-align: center;
}

.promo-strip p {
  margin: 0;
  font-size: 1rem;
}

.promo-badge {
  background: var(--ink);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.promo-ad {
  padding: 2rem 0 0;
}

.promo-ad-frame {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
  aspect-ratio: 16 / 9;
  max-height: 520px;
}

.promo-ad-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.promo-ad-frame .promo-ad-mobile {
  display: none;
}

.promo-ad-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.15) 70%, transparent);
  color: #fff;
  max-width: 36rem;
}

.promo-ad-frame h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.promo-ad-frame p {
  color: rgba(255, 255, 255, 0.88);
}

.promo-strip,
.site-footer,
.final-cta,
.app-section,
.lead-form,
.benefits,
.proof,
.faq {
  width: 100%;
  max-width: 100%;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.section-head-split {
  text-align: left;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: end;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.25rem;
}

.section-head-split p {
  border-left: 1px solid var(--line);
  padding-left: 1.5rem;
}

/* Benefits */
.benefits {
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 193, 7, 0.45);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  color: #b8860b;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 193, 7, 0.35);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Tech */
.tech {
  background: var(--bg-soft);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.tech-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 16ch;
}

.tech-copy p {
  color: var(--muted);
  max-width: 38ch;
}

.tech-visual img {
  margin-inline: auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  color: #fff;
  isolation: isolate;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15) 55%, transparent);
  z-index: 1;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-arrow {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Segments */
.segments {
  background: var(--bg);
}

.segments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.segment-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.segment-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.segment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.segment-body {
  padding: 1.6rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.segment-tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.segment-tag-dark {
  background: var(--ink);
  color: var(--gold);
}

.segment-body h3 {
  font-size: 1.35rem;
}

.segment-body p {
  color: var(--muted);
}

.segment-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.segment-body li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.segment-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.segment-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* App */
.app-section {
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  color: #fff;
}

.app-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.app-visual img {
  max-width: 420px;
  margin-inline: auto;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.5));
}

.app-copy .eyebrow {
  color: var(--gold);
}

.app-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.app-copy p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 40ch;
}

/* Form */
.lead-form {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(255, 193, 7, 0.12), transparent 50%),
    var(--bg-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.form-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.form-intro p {
  color: var(--muted);
}

.form-perks {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.form-perks li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.form-perks li::before {
  content: "✓ ";
  color: var(--ok);
  font-weight: 700;
}

.card-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1.15rem;
}

.field label,
.field legend {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.field input[type="text"],
.field input[type="tel"] {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

.field-tipo {
  border: 0;
  padding: 0;
  margin: 0 0 1.25rem;
}

.tipo-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.tipo-option {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  padding: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tipo-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(255, 193, 7, 0.1);
}

.tipo-option input {
  margin-top: 0.2rem;
  accent-color: #c99700;
}

.tipo-option strong {
  display: block;
  font-size: 0.95rem;
}

.tipo-option small {
  color: var(--muted);
}

.form-secure {
  margin: 0.9rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-feedback {
  margin-top: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(31, 170, 89, 0.12);
  color: #146c38;
  font-weight: 600;
  text-align: center;
}

/* Proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.proof-item {
  padding: 1rem 0.75rem;
}

.proof-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.proof-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
}

.proof-label {
  margin: 0;
  font-weight: 700;
  color: var(--ink-soft);
}

/* Final CTA */
.final-cta {
  padding-top: 0;
}

.final-cta-inner {
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(255, 193, 7, 0.18), transparent 55%),
    var(--bg-dark);
  color: #fff;
  border-radius: 28px;
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.final-cta-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.final-cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 36ch;
  margin-inline: auto;
}

/* FAQ */
.faq {
  background: var(--bg-soft);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  position: relative;
  padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ink);
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--gold);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.faq-answer p:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

.faq-answer ol {
  padding-left: 1.2rem;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 32ch;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .tech-grid,
  .form-grid,
  .app-grid,
  .segments-grid,
  .section-head-split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero-bg::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.72) 45%,
        rgba(0, 0, 0, 0.55) 100%
      ),
      radial-gradient(ellipse 70% 50% at 70% 30%, rgba(255, 193, 7, 0.14), transparent 55%);
  }

  .hero-bg img {
    object-position: 78% center;
  }

  .section-head-split p {
    border-left: 0;
    padding-left: 0;
  }

  .benefits-grid,
  .services-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(1),
  .proof-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .hero h1 {
    max-width: none;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0b0b0b;
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero-bg::after {
    height: 70px;
  }
}

@media (max-width: 640px) {
  .benefits-grid,
  .services-grid,
  .proof-grid,
  .footer-grid,
  .tipo-options {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .promo-ad {
    padding: 1.25rem 0 0;
  }

  .promo-ad-frame {
    aspect-ratio: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    background: #0b0b0b;
  }

  .promo-ad-frame .promo-ad-desktop {
    display: none;
  }

  .promo-ad-frame .promo-ad-mobile {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  /* Texto abaixo da imagem — sem sobrepor o "Segurança Ativada" */
  .promo-ad-frame figcaption {
    position: static;
    max-width: none;
    padding: 1.35rem 1.2rem 1.5rem;
    background: #0b0b0b;
  }

  .promo-ad-frame figcaption .btn {
    width: 100%;
  }

  .promo-strip-inner {
    flex-direction: column;
  }

  .service-card {
    min-height: 260px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 0.9rem;
    bottom: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .service-card img,
  .whatsapp-float {
    transition: none;
  }
}
