:root {
  --red: #f3302f;
  --red-dark: #d81918;
  --ink: #111820;
  --ink-soft: #24303a;
  --muted: #66717d;
  --line: #e7ebef;
  --surface: #ffffff;
  --surface-soft: #f3f6f8;
  --whatsapp: #32c461;
  --whatsapp-dark: #22a950;
  --shadow-card: 0 18px 44px rgba(18, 24, 32, 0.12);
  --shadow-cta: 0 16px 30px rgba(50, 196, 97, 0.36);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

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

p {
  margin: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.service-card a:focus-visible,
.feature a:focus-visible,
.legal a:focus-visible,
.footer a:focus-visible,
summary:focus-visible {
  outline-color: var(--red);
}

.container {
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
}

.topbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.topbar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 15, 21, 0.9), rgba(9, 15, 21, 0.68) 46%, rgba(9, 15, 21, 0.3)),
    linear-gradient(180deg, rgba(9, 15, 21, 0.22), rgba(9, 15, 21, 0.88));
}

.hero__content {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 78px 0 152px;
}

.hero__copy {
  width: 100%;
  max-width: 650px;
  animation: float-up 0.7s ease-out both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.eyebrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2 {
  font-family: Poppins, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin: 22px 0 0;
  font-size: clamp(46px, 8vw, 76px);
  line-height: 0.94;
  font-weight: 800;
  overflow-wrap: break-word;
}

h1 span {
  color: var(--red);
}

.break-mobile {
  display: none;
}

.break-mobile + br {
  display: none;
}

.hero-break {
  display: none;
}

.hero p {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  overflow-wrap: break-word;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero__proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.floating-cta:hover {
  transform: translateY(-2px);
}

.button:active,
.floating-cta:active {
  transform: translateY(0) scale(0.98);
}

.button svg,
.floating-cta svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex: 0 0 auto;
}

.button--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.button--whatsapp:hover {
  background: var(--whatsapp-dark);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  backdrop-filter: blur(12px);
}

.button--dark {
  min-height: 44px;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

.button--dark:hover {
  background: var(--red);
}

.button--dark svg {
  width: 15px;
  height: 15px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, 500px);
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-width: 0;
}

.trust-list strong {
  display: block;
  font-size: clamp(27px, 4vw, 34px);
  font-weight: 800;
}

.trust-list span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.25;
}

.service-section {
  position: relative;
  z-index: 2;
  margin-top: -90px;
  padding-bottom: 84px;
}

.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.conversion-strip strong {
  font-size: 15px;
}

.conversion-strip span {
  color: var(--muted);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(18, 24, 32, 0.16);
}

.icon-badge {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(243, 48, 47, 0.1);
  color: var(--red);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h2 {
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.14;
  font-weight: 800;
}

.service-card p {
  flex: 1;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.68;
}

.service-card .button {
  margin-top: 24px;
}

.section-copy {
  max-width: 660px;
}

.section-copy h2,
.section-heading h2 {
  margin: 12px 0 0;
  font-family: Poppins, Inter, sans-serif;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading {
  max-width: 820px;
}

.pain-section,
.proof-section,
.process-section,
.guarantee-section,
.testimonials {
  padding: 92px 0;
}

.pain-section {
  background: #fff;
}

.pain-grid,
.proof-grid,
.guarantee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.pain-list {
  display: grid;
  gap: 14px;
}

.pain-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface-soft);
}

.pain-list strong {
  display: block;
  font-size: 18px;
}

.pain-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.proof-section,
.guarantee-section {
  background: var(--surface-soft);
}

.video-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow-card);
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.proof-section .button {
  margin-top: 26px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 58px 20px 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 24, 32, 0.08);
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.steps strong {
  display: block;
  font-size: 17px;
}

.steps span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.guarantee-list {
  display: grid;
  gap: 14px;
}

.guarantee-list article,
.guarantee-list p {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.guarantee-list article {
  padding: 20px;
}

.guarantee-list strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
}

.guarantee-list strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--whatsapp);
  box-shadow: 0 0 0 5px rgba(50, 196, 97, 0.13);
  flex: 0 0 auto;
}

.guarantee-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.guarantee-list p {
  padding: 14px 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.testimonial-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.testimonial-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.testimonial-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.feature {
  padding: 94px 0;
}

.feature--muted {
  background: var(--surface-soft);
}

.feature--dark {
  background: #071017;
  color: #fff;
}

.feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.feature__grid--reverse .map-wrap {
  order: 1;
}

.feature__grid--reverse > div:last-child {
  order: 2;
}

.feature h2,
.legal h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.04;
  font-weight: 800;
}

.feature p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature .button {
  margin-top: 28px;
}

.image-frame {
  position: relative;
  margin: 0;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.feature--dark .image-frame img {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.image-frame--badge figcaption {
  position: absolute;
  left: -18px;
  bottom: -18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.image-frame--badge strong {
  color: var(--ink);
}

.image-frame--badge span {
  color: var(--muted);
  font-size: 12px;
}

.map-wrap {
  display: flex;
  justify-content: center;
}

.map-wrap img {
  width: min(100%, 430px);
}

.legal {
  padding: 84px 0;
  background: #fff;
}

.legal__header {
  max-width: 760px;
}

.legal__header p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface-soft);
}

summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-family: Poppins, Inter, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

details p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  padding: 38px 0 92px;
  background: #fff;
  color: var(--muted);
}

.footer__inner {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 13px;
}

.footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

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

.footer p {
  font-size: 12px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 20px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-cta);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.floating-cta:hover {
  background: var(--whatsapp-dark);
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), 720px);
  }

  .hero,
  .hero__content {
    min-height: 680px;
  }

  .hero__content {
    align-items: flex-start;
    padding-top: 92px;
    padding-bottom: 132px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(9, 15, 21, 0.52), rgba(9, 15, 21, 0.92)),
      linear-gradient(90deg, rgba(9, 15, 21, 0.72), rgba(9, 15, 21, 0.35));
  }

  h1 {
    max-width: 520px;
  }

  .conversion-strip,
  .service-grid,
  .feature__grid,
  .legal__grid,
  .pain-grid,
  .proof-grid,
  .guarantee-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .conversion-strip {
    display: grid;
  }

  .feature__grid--reverse .map-wrap,
  .feature__grid--reverse > div:last-child {
    order: initial;
  }

  .service-section {
    padding-bottom: 62px;
  }

  .feature {
    padding: 72px 0;
  }

  .pain-section,
  .proof-section,
  .process-section,
  .guarantee-section,
  .testimonials {
    padding: 72px 0;
  }

  .image-frame--badge figcaption {
    left: 14px;
    bottom: 14px;
  }

  .testimonial-grid {
    display: flex;
    gap: 16px;
    margin-inline: -14px;
    padding: 2px 14px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-grid figure {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .testimonial-grid img {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 40px), 720px);
  }

  .hero .container {
    width: min(calc(100vw - 40px), 320px);
    margin-left: auto;
    margin-right: auto;
  }

  .topbar {
    min-height: 38px;
    font-size: 11px;
  }

  .hero,
  .hero__content {
    min-height: auto;
  }

  .hero__content {
    padding-top: 78px;
    padding-bottom: 88px;
  }

  h1 {
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.02;
  }

  .break-mobile {
    display: inline;
  }

  .break-mobile + br {
    display: block;
  }

  .hero-break {
    display: block;
  }

  .hero p {
    max-width: 32ch;
    font-size: 15px;
  }

  .conversion-strip span {
    max-width: 29ch;
    overflow-wrap: break-word;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions .button {
    min-height: 52px;
  }

  .trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 320px);
    max-width: 320px;
    margin: 28px auto 0;
    text-align: center;
  }

  .trust-list li {
    text-align: center;
  }

  .trust-list strong {
    font-size: 24px;
  }

  .trust-list span {
    font-size: 11px;
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  .service-section {
    margin-top: -34px;
    padding-bottom: 74px;
  }

  .service-card {
    padding: 26px;
  }

  .feature h2,
  .legal h2,
  .section-copy h2,
  .section-heading h2 {
    font-size: 31px;
  }

  .hero__proof {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 320px);
    max-width: 320px;
    gap: 10px;
    margin: 20px auto 0;
  }

  .hero__proof span {
    min-width: 0;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    text-align: center;
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .pain-section,
  .proof-section,
  .process-section,
  .guarantee-section,
  .testimonials,
  .feature,
  .legal {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .testimonial-grid figure {
    flex-basis: min(76vw, 280px);
  }

  .testimonial-grid figcaption {
    font-size: 13px;
  }

  .floating-cta {
    width: 58px;
    height: 58px;
    min-height: 58px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: auto;
    justify-content: center;
    padding: 0;
  }

  .floating-cta svg {
    width: 26px;
    height: 26px;
  }

  .floating-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .footer {
    padding-bottom: 96px;
  }
}
