/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  padding-bottom: 84px; /* room for sticky bottom CTA on mobile */
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1f2937;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #16a34a;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* ============ HEADINGS ============ */
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ============ TOP URGENCY BAR ============ */
.urgency-bar {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 2.8vw, 13px);
  font-weight: 600;
  line-height: 1.35;
  position: relative;
  overflow: hidden;
}
.urgency-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.urgency-bar .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 1.5s infinite;
  vertical-align: middle;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}
.urgency-bar .promo-date {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 4px;
  font-weight: 700;
}

/* ============ SECONDARY UNITS ALERT ============ */
.units-alert {
  background: #fef3c7;
  color: #92400e;
  text-align: center;
  padding: 8px 16px;
  font-size: clamp(10px, 2.8vw, 13px);
  font-weight: 600;
  border-bottom: 1px solid #fde68a;
}

/* ============ CONTAINERS ============ */
.section {
  padding: 28px 0;
}
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 18px;
}
.container-sm {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ============ HERO ============ */
.hero {
  padding: 24px 0 28px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}
.hero h1 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: #16a34a;
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: #bbf7d0;
  border-radius: 2px;
  z-index: -1;
}

.hero-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto 22px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(15, 23, 42, 0.06);
  background: #f3f4f6;
  max-width: 600px;
}
.hero-media video {
  width: 100%;
  display: block;
}
.hero-media .play-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(220, 38, 38, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-media .play-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

/* ============ PRICE CARD ============ */
.price-card {
  background: #ffffff;
  border: 2px solid #16a34a;
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  margin: 18px auto;
  max-width: 480px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.12);
  position: relative;
}
.price-card::before {
  content: "OFERTA ESPECIAL";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 1px;
}
.price-card .from {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 500;
}
.price-card .from .old {
  text-decoration: line-through;
  color: #dc2626;
  font-weight: 600;
}
.price-card .installment {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: #16a34a;
  line-height: 1;
  margin: 4px 0 6px;
  letter-spacing: -0.02em;
}
.price-card .installment .small {
  font-size: 22px;
  font-weight: 700;
  vertical-align: top;
}
.price-card .cash {
  font-size: 14px;
  color: #4b5563;
  font-weight: 500;
}
.price-card .cash strong {
  color: #16a34a;
  font-weight: 700;
}

/* ============ CTA BUTTON ============ */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 18px auto;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 18px 22px;
  border-radius: 14px;
  border: none;
  text-decoration: none !important;
  box-shadow:
    0 8px 20px rgba(22, 163, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  position: relative;
  overflow: hidden;
  animation: pulse-cta 2s infinite;
}
.cta:hover,
.cta:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 10px 24px rgba(22, 163, 74, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff !important;
}
.cta svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}
.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shine 3s infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}
@keyframes pulse-cta {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

/* ============ PAYMENT METHODS ============ */
.pay-strip {
  text-align: center;
  margin: 14px auto 8px;
  max-width: 480px;
}
.pay-strip img {
  margin: 0 auto;
  max-height: 42px;
  width: auto;
  opacity: 0.92;
}
.pay-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ============ TRUST BADGES ============ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 480px;
  margin: 16px auto;
  padding: 0 4px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 4px;
  gap: 4px;
}
.trust-badge svg {
  width: 22px;
  height: 22px;
  fill: #16a34a;
}
.trust-badge .t {
  font-size: 11px;
  font-weight: 700;
  color: #166534;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}

/* ============ BENEFITS LIST (under hero) ============ */
.benefits {
  max-width: 480px;
  margin: 18px auto;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  justify-self: anchor-center;
}
.benefits li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: #1f2937;
  font-weight: 500;
}
.benefits ul {
  margin: 0;
  padding: 0;
}
.benefits .check-icon {
  width: 22px;
  height: 22px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefits .check-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* ============ MAIN PRODUCT IMAGE ============ */
.product-showcase {
  margin: 24px auto;
  /*max-width: 600px;*/
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

/* ============ SECTION TITLE / CATEGORY HEADER ============ */
.section-title {
  text-align: center;
  margin: 28px auto 16px;
  max-width: 600px;
}
.section-title h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}
.section-title h2 .blue {
  color: #2563eb;
}
.section-title .sub {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
}

.cat-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 2.8vw, 13px);
  padding: 14px 18px;
  border-radius: 10px;
  margin: 22px auto 12px;
  max-width: 600px;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cat-banner svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}
.cat-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 12px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

/* ============ MOLDES CHECKLIST (2 col with green boxes) ============ */
.moldes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 600px;
  margin: 14px auto 22px;
  padding: 18px 14px;
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 12px;
}
.moldes-grid .item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(10px, 2.8vw, 13px);
  font-weight: 600;
  color: #14532d;
  line-height: 1.2;
}
.moldes-grid .check-box {
  width: 18px;
  height: 18px;
  background: #16a34a;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(22, 163, 74, 0.3);
}
.moldes-grid .check-box svg {
  width: 11px;
  height: 11px;
  fill: #fff;
}

/* ============ "MORE" / DISCLAIMER ============ */
.more-line {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #2563eb;
  font-size: clamp(10px, 2.8vw, 13px);
  margin: 22px 0 14px;
  padding: 14px;
  background: #eff6ff;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px dashed #93c5fd;
}
.disclaimer {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  color: #1e40af;
  padding: 14px 16px;
  border-radius: 8px;
  margin: 16px auto;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.5;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 36px 0;
  margin: 30px 0;
}
.testimonials .section-title h2 {
  font-size: 24px;
}
.testimonials .section-title h2 .green {
  color: #16a34a;
}
.stars-row {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 8px 0 4px;
}
.stars-row svg {
  width: 18px;
  height: 18px;
  fill: #fbbf24;
}
.proof-count {
  text-align: center;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 22px;
  font-weight: 500;
}
.proof-count strong {
  color: #16a34a;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 14px;
}
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease;
  align-self: center;
}
.testimonial-card:hover {
  transform: translateY(-3px);
}
.testimonial-card img {
  width: 100%;
  display: block;
}
.testimonial-card .meta {
  padding: 8px 10px;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  justify-items: center;
}
.testimonial-card .meta-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}
.testimonial-card .meta-stars svg {
  width: 12px;
  height: 12px;
  fill: #fbbf24;
}
.testimonial-card .meta-name {
  font-size: 12px;
  color: #1f2937;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}
.testimonial-card .meta-tag {
  font-size: 10px;
  color: #16a34a;
  font-weight: 600;
  margin-top: 2px;
}

/* ============ HOW TO BUY ============ */
.howto {
  padding: 36px 0;
  background: #fafafa;
}
.howto .section-title h2 {
  font-size: 22px;
}
.howto-gif {
  max-width: 480px;
  margin: 18px auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
  display: block;
  width: 100%;
}
.howto-text {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}
.howto-text p {
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
  margin: 12px 0;
}
.howto-text p strong {
  color: #0f172a;
}

/* ============ FINAL CTA / GUARANTEE ============ */
.final-cta {
  text-align: center;
  margin: 24px auto;
  padding: 0 18px;
  max-width: 600px;
}
.guarantee-card {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #86efac;
  border-radius: 14px;
  padding: 18px;
  margin: 22px auto;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.guarantee-card .badge {
  width: 56px;
  height: 56px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}
.guarantee-card .badge svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.guarantee-card .text strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #14532d;
  font-size: 15px;
  margin-bottom: 2px;
}
.guarantee-card .text span {
  font-size: 13px;
  color: #166534;
  line-height: 1.4;
}

.attention-alert {
  background: #fef2f2;
  border-left: 4px solid #dc2626;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 8px;
  margin: 22px auto;
  max-width: 480px;
  position: relative;
  text-align: left;
}
.attention-alert .at-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.attention-alert .at-desc {
  font-size: 13px;
  line-height: 1.5;
  display: block;
}
.attention-alert button {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: 0;
  font-size: 22px;
  color: #991b1b;
  cursor: pointer;
  line-height: 1;
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 14px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-cta .price-mini {
  flex-shrink: 0;
  text-align: left;
  line-height: 1.1;
}
.sticky-cta .price-mini .small {
  font-size: 10px;
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 500;
}
.sticky-cta .price-mini .big {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #16a34a;
  display: block;
  line-height: 1;
}
.sticky-cta .cta-btn {
  flex: 1;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #fff !important;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 12px;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  animation: pulse-cta 2s infinite;
}
.sticky-cta .cta-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  right: 14px;
  bottom: 80px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.2s ease;
}
.float-wa:hover {
  transform: scale(1.08);
}
.float-wa svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ============ TOAST (fake purchases) ============ */
#toast {
  position: fixed;
  left: 14px;
  bottom: 80px;
  z-index: 997;
  background: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: translateX(calc(-100% - 30px));
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  opacity: 0;
  max-width: 290px;
  border: 1px solid #f1f5f9;
}
#toast.show {
  transform: translateX(0);
  opacity: 1;
}
#toast .check-ic {
  width: 32px;
  height: 32px;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#toast .check-ic svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
#toast .info {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}
#toast .info .top {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
#toast .info .nm {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  font-family: "Montserrat", sans-serif;
}
#toast .info .tm {
  font-size: 11px;
  color: #9ca3af;
  font-weight: 500;
}
#toast .info .pg {
  font-size: 12px;
  color: #4b5563;
  margin-top: 2px;
}

/* ============ DESKTOP / TABLET ============ */
@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }
  .sticky-cta {
    display: none;
  }
  .float-wa {
    bottom: 20px;
  }
  #toast {
    left: auto;
    right: 20px;
    bottom: 90px;
    transform: translateX(calc(100% + 30px));
  }
  .hero h1 {
    font-size: 36px;
  }
  .price-card .installment {
    font-size: 46px;
  }
  .price-card .installment .small {
    font-size: 26px;
  }
  .cta {
    font-size: 20px;
    padding: 20px 28px;
  }
  .section-title h2 {
    font-size: 26px !important;
  }
  .testimonials .section-title h2 {
    font-size: 30px !important;
  }
  .moldes-grid .item {
    font-size: 14px;
  }
  .moldes-grid {
    padding: 22px 18px;
    gap: 10px;
  }
  .urgency-bar {
    font-size: 16px;
    padding: 12px 20px;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }
  .container {
    max-width: 900px;
  }
}

/* ============ RESPONSIVE TIGHTENING ============ */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 22px;
  }
  .price-card .installment {
    font-size: 32px;
  }
  .cta {
    font-size: 16px;
    padding: 16px 18px;
  }
  .moldes-grid .item {
    font-size: 12px;
  }
  .trust-badge .t {
    font-size: 10px;
  }
}

/* ============ LOCAL ASSETS & ACCESSIBILITY ============ */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}
.product-visual {
  padding: 0;
}
.site-footer {
  padding: 28px 18px 110px;
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 13px;
}
.site-footer p {
  margin: 4px 0;
}
.sticky-cta {
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.faq {
  background: #f8fafc;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 16px;
}
.faq-list summary {
  padding: 17px 30px 17px 0;
  color: #0f172a;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 13px;
  color: #16a34a;
  font-size: 24px;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list p {
  margin: 0;
  padding: 0 0 17px;
  color: #475569;
}
.attention-close:focus-visible,
.cta:focus-visible,
.cta-btn:focus-visible,
.float-wa:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
