:root {
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #556070;
  --card: #ffffff;
  --border: rgba(12, 18, 32, 0.12);

  --blue: #0b74ff;
  --blue-2: #0a5dd1;
  --yellow: #ffd43b;
  --yellow-2: #ffbf00;

  --wa: #25d366;
  --shadow: 0 12px 30px rgba(10, 28, 70, 0.12);

  --radius: 18px;
  --radius-sm: 14px;
  --container: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--text);
  color: white;
  z-index: 9999;
}
.skip-link:focus {
  left: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 18, 32, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand__logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header__nav {
  display: none;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.header__nav a:hover {
  color: var(--text);
}

.header__cta {
  display: none;
}

@media (min-width: 900px) {
  .header__nav {
    display: flex;
  }
  .header__cta {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--lg {
  padding: 14px 18px;
  font-size: 16px;
}
.btn--md {
  padding: 12px 14px;
  font-size: 14px;
}
.btn--primary {
  background: linear-gradient(180deg, var(--blue), var(--blue-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 116, 255, 0.22);
}
.btn--primary:hover {
  box-shadow: 0 14px 30px rgba(11, 116, 255, 0.28);
}
.btn--ghost {
  background: rgba(11, 116, 255, 0.06);
  border-color: rgba(11, 116, 255, 0.2);
  color: var(--blue-2);
}
.btn--ghost:hover {
  background: rgba(11, 116, 255, 0.09);
}
.btn--whatsapp {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.35);
  color: #0f5f33;
}
.btn--whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
}

.w-full {
  width: 100%;
}
.center {
  display: grid;
  place-items: center;
}
.mt-24 {
  margin-top: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 26px;
  background: radial-gradient(900px 320px at 20% 20%, rgba(255, 212, 59, 0.28), transparent 62%),
    radial-gradient(900px 380px at 80% 0%, rgba(11, 116, 255, 0.18), transparent 58%),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.hero__grid {
  display: grid;
  gap: 22px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    padding: 24px 0 6px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: #6a4c00;
  background: rgba(255, 212, 59, 0.38);
  border: 1px solid rgba(255, 212, 59, 0.7);
  width: fit-content;
}

.hero__title {
  margin: 10px 0 0;
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-size: clamp(34px, 4vw, 54px);
}
.hero__subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 650;
}

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

.hero__trust {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 520px) {
  .hero__trust {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 18, 32, 0.08);
  padding: 12px 12px;
  box-shadow: 0 10px 24px rgba(10, 28, 70, 0.06);
}
.trust-item__big {
  display: block;
  font-weight: 950;
  letter-spacing: -0.02em;
}
.trust-item__small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.hero__visual-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  text-align: center;
}

.hero__wave {
  height: 38px;
  background: linear-gradient(180deg, transparent, rgba(11, 116, 255, 0.08));
  margin-top: 18px;
}

.visual-card {
  border-radius: 24px;
  border: 1px solid rgba(12, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 16px;
}
.visual-card__top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.visual-badge {
  font-weight: 850;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 116, 255, 0.12);
  border: 1px solid rgba(11, 116, 255, 0.22);
  color: #0a4a9f;
}
.visual-badge--yellow {
  background: rgba(255, 212, 59, 0.34);
  border-color: rgba(255, 212, 59, 0.6);
  color: #6a4c00;
}

.hero-media {
  margin: 14px 0 10px;
}
.hero-media__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(12, 18, 32, 0.1);
  box-shadow: 0 14px 34px rgba(10, 28, 70, 0.12);
}
.hero-media__cap {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.mini-list__item {
  border-radius: 14px;
  border: 1px solid rgba(12, 18, 32, 0.09);
  background: #fff;
  padding: 10px 10px;
  font-weight: 800;
  font-size: 13px;
  color: #20304a;
}

.section {
  padding: 44px 0;
}
.section--soft {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}
.section__head {
  max-width: 720px;
}
.section__title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
}
.section__sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.grid--two {
  grid-template-columns: 1fr;
}
.grid--three {
  grid-template-columns: 1fr;
}
.grid--testimonials {
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .grid--two {
    grid-template-columns: 1fr 1fr;
  }
  .grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1060px) {
  .grid--testimonials {
    grid-template-columns: repeat(5, 1fr);
  }
}

.card {
  background: var(--card);
  border: 1px solid rgba(12, 18, 32, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(10, 28, 70, 0.06);
  padding: 18px;
}
.card__title {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.card--quote blockquote {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.01em;
}
.card--quote figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #20304a;
  font-weight: 700;
}
.list li {
  margin: 8px 0;
}

.muted {
  color: var(--muted);
}
.tiny {
  font-size: 12.5px;
}

.callout {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 212, 59, 0.55);
  background: rgba(255, 212, 59, 0.2);
  color: #4f3a00;
  font-weight: 700;
}

.build-points {
  display: grid;
  gap: 12px;
  margin: 14px 0 16px;
}
.build-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.build-point__title {
  font-weight: 900;
}
.build-point__text {
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 6px;
}
.dot--blue {
  background: var(--blue);
}
.dot--yellow {
  background: var(--yellow-2);
}
.dot--green {
  background: var(--wa);
}

.step__day {
  font-weight: 950;
  color: #0a4a9f;
  background: rgba(11, 116, 255, 0.12);
  border: 1px solid rgba(11, 116, 255, 0.22);
  padding: 8px 10px;
  border-radius: 999px;
  width: fit-content;
  font-size: 13px;
}
.step__title {
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}

.section--offer {
  background: radial-gradient(800px 280px at 20% 20%, rgba(255, 212, 59, 0.22), transparent 60%),
    radial-gradient(900px 350px at 80% 0%, rgba(11, 116, 255, 0.16), transparent 58%),
    linear-gradient(180deg, #ffffff, #f9fbff);
}

.offer {
  display: grid;
  gap: 14px;
}
@media (min-width: 980px) {
  .offer {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: start;
  }
}
.offer__title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
}
.offer__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}
.price {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(12, 18, 32, 0.1);
  box-shadow: 0 10px 24px rgba(10, 28, 70, 0.06);
}
.price__amount {
  font-weight: 1000;
  font-size: 44px;
  letter-spacing: -0.03em;
}
.price__note {
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

.checklist {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
  color: #20304a;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.45);
  box-shadow: inset 0 0 0 2px rgba(37, 211, 102, 0.18);
}
.urgency {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 212, 59, 0.6);
  background: rgba(255, 212, 59, 0.22);
  font-weight: 750;
}

.kit-includes {
  margin-top: 16px;
}
.kit-includes__frame {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(12, 18, 32, 0.1);
  background: #fff;
  box-shadow: 0 10px 24px rgba(10, 28, 70, 0.06);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.kit-includes__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.kit-includes__note {
  margin: 10px 0 0;
}
.urgency__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff4d4d;
  box-shadow: 0 0 0 6px rgba(255, 77, 77, 0.16);
}
.card--highlight {
  border-color: rgba(11, 116, 255, 0.22);
  box-shadow: 0 18px 50px rgba(11, 116, 255, 0.16);
}

.video {
  margin-top: 18px;
}
.video__frame,
.video__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px solid rgba(12, 18, 32, 0.1);
  background: linear-gradient(135deg, rgba(11, 116, 255, 0.12), rgba(255, 212, 59, 0.18));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.video__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
}
.video__play {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(12, 18, 32, 0.12);
  box-shadow: 0 12px 30px rgba(10, 28, 70, 0.12);
  position: relative;
}
.video__play::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  width: 0;
  height: 0;
  border-left: 18px solid var(--blue-2);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.video__text {
  margin-top: 12px;
  font-weight: 950;
}
.video__subtext {
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.faq__item {
  border: 1px solid rgba(12, 18, 32, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(10, 28, 70, 0.06);
}
.faq__item summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  float: right;
  font-weight: 950;
  color: var(--blue-2);
}
.faq__item[open] summary::after {
  content: "–";
}
.faq__item p {
  margin: 10px 0 2px;
  color: var(--muted);
  font-weight: 650;
}

.final-cta {
  padding: 44px 0;
  background: linear-gradient(180deg, rgba(11, 116, 255, 0.1), rgba(255, 212, 59, 0.16));
}
.final-cta__inner {
  border-radius: 24px;
  border: 1px solid rgba(12, 18, 32, 0.1);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 14px;
  align-items: center;
}
@media (min-width: 760px) {
  .final-cta__inner {
    grid-template-columns: 1fr auto;
    padding: 22px;
  }
}
.final-cta__title {
  margin: 0;
  letter-spacing: -0.02em;
}
.final-cta__sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.footer {
  border-top: 1px solid rgba(12, 18, 32, 0.08);
  background: #ffffff;
  padding: 18px 0 90px;
}
@media (min-width: 900px) {
  .footer {
    padding-bottom: 18px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__link {
  color: var(--blue-2);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(10, 93, 209, 0.35);
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__link:hover {
  text-decoration-color: rgba(10, 93, 209, 0.7);
}
.footer__pin {
  color: var(--blue-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__addr {
  color: var(--muted);
  font-weight: 650;
}
.footer__name {
  font-weight: 950;
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 92px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(12, 18, 32, 0.12);
  box-shadow: var(--shadow);
}
.wa-float:hover {
  transform: translateY(-1px);
}
.wa-float__icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.45);
  position: relative;
}
.wa-float__icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.8);
}
.wa-float__text {
  font-weight: 950;
}

.wa-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  padding: 10px 12px 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(12, 18, 32, 0.08);
}
.wa-sticky__inner {
  width: min(100% - 0px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wa-sticky__title {
  font-weight: 950;
}
.wa-sticky__sub {
  color: var(--muted);
  font-weight: 650;
  font-size: 12.5px;
  margin-top: 2px;
}

@media (min-width: 900px) {
  .wa-sticky {
    display: none;
  }
  .wa-float {
    bottom: 18px;
  }
}

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