:root {
  --ms-bg: #210302;
  --ms-bg-2: #2b0705;
  --ms-bg-3: #3a0c09;
  --ms-surface: rgba(38, 9, 7, 0.92);
  --ms-surface-2: rgba(55, 16, 12, 0.88);
  --ms-primary: #c47324;
  --ms-primary-2: #d68634;
  --ms-beige: #d8c8b0;
  --ms-beige-2: #efe2cf;
  --ms-text: #f6ead8;
  --ms-muted: #ccb79b;
  --ms-line: rgba(216, 200, 176, 0.18);
  --ms-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sofia Pro", "Sofia Pro Regular", "Avenir Next", "Montserrat", Arial, sans-serif;
  color: var(--ms-text);
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 115, 36, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(216, 200, 176, 0.05), transparent 18%),
    linear-gradient(180deg, var(--ms-bg) 0%, var(--ms-bg-2) 42%, #180202 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(33, 3, 2, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(239, 226, 207, 0.08);
}

.topbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__text {
  margin: 0;
  font-size: 1rem;
  color: var(--ms-beige-2);
}

.topbar__text strong {
  color: var(--ms-primary-2);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.countdown__item {
  min-width: 82px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(239, 226, 207, 0.08);
  text-align: center;
}

.countdown__item span {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ms-primary-2);
}

.countdown__item small {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ms-muted);
}

.hero {
  position: relative;
  padding: 58px 0 38px;
  background:
    linear-gradient(90deg, rgba(33, 3, 2, 0.95) 0%, rgba(33, 3, 2, 0.88) 30%, rgba(33, 3, 2, 0.68) 60%, rgba(33, 3, 2, 0.9) 100%),
    url("/images/banner.png") center center / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.08) 24%, rgba(0,0,0,0.34) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}

.hero__glow--left {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 70px;
  background: rgba(196, 115, 36, 0.18);
}

.hero__glow--right {
  width: 280px;
  height: 280px;
  right: 10%;
  top: 120px;
  background: rgba(216, 200, 176, 0.08);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 450px);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 150px);
}

.hero__grid--no-image {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 450px);
}

.hero__content {
  max-width: 760px;
  padding-top: 8px;
}

.hero__form {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(196, 115, 36, 0.42);
  background: rgba(196, 115, 36, 0.12);
  color: var(--ms-beige-2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pill--soft {
  background: rgba(255,255,255,0.04);
  color: var(--ms-beige-2);
  border-color: rgba(239, 226, 207, 0.14);
}

.hero h1 {
  margin: 0;
  font-family: "Sofia Pro", "Sofia Pro Black", "Avenir Next", "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #fff7ee;
}

.hero__lead {
  margin: 24px 0 0;
  color: var(--ms-beige-2);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero__benefits {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
  max-width: 37rem;
}

.hero__benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--ms-muted);
  line-height: 1.6;
}

.hero__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ms-primary);
  box-shadow: 0 0 0 5px rgba(196, 115, 36, 0.12);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--ms-primary-2) 0%, var(--ms-primary) 100%);
  color: #fff7ee;
  box-shadow: 0 12px 26px rgba(196, 115, 36, 0.22);
}

.btn--ghost {
  color: var(--ms-beige-2);
  background: rgba(255,255,255,0.03);
  border-color: rgba(239, 226, 207, 0.12);
}

.btn--full {
  width: 100%;
}

.form-card {
  width: 100%;
  max-width: 450px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018)),
    rgba(33, 8, 6, 0.9);
  border: 1px solid rgba(216, 200, 176, 0.12);
  box-shadow: var(--ms-shadow);
  backdrop-filter: blur(10px);
}

.form-card__header h2 {
  margin: 16px 0 10px;
  font-family: "Sofia Pro", "Sofia Pro Black", "Avenir Next", "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 2.2vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff8ef;
}

.form-card__header p {
  margin: 0 0 20px;
  color: var(--ms-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--ms-beige-2);
  font-weight: 700;
  font-size: 0.95rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(239, 226, 207, 0.12);
  background: rgba(255,255,255,0.03);
  color: var(--ms-text);
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b59f83;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(196, 115, 36, 0.52);
  box-shadow: 0 0 0 4px rgba(196, 115, 36, 0.1);
  background: rgba(255,255,255,0.045);
}

.form-field__hint,
.form-disclaimer {
  color: var(--ms-muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

.form-disclaimer {
  margin: 0;
}

.form-status {
  min-height: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #ff8d8d;
}

.form-status.is-success {
  color: #79dca5;
}

.video-testimonials,
.about-method,
.about-eder,
.cta-section {
  padding: 46px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 18px 0 12px;
  font-family: "Sofia Pro", "Sofia Pro Black", "Avenir Next", "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #fff8ef;
}

.section-heading p {
  margin: 0;
  color: var(--ms-muted);
  line-height: 1.7;
  font-size: 1rem;
}

.video-carousel {
  position: relative;
}

.video-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 320px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}

.video-carousel__track::-webkit-scrollbar {
  display: none;
}

.video-card {
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  background: #140404;
  border: 1px solid rgba(216, 200, 176, 0.1);
  box-shadow: var(--ms-shadow);
}

.video-card__video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  cursor: pointer;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 6, 4, 0.78);
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.carousel-btn--prev {
  left: -10px;
}

.carousel-btn--next {
  right: -10px;
}

.about-method__grid,
.about-eder__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
}

.method-cards {
  display: grid;
  gap: 16px;
}

.info-card,
.cta-box,
.about-eder__photo-wrap {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(40, 10, 8, 0.88);
  border: 1px solid rgba(216, 200, 176, 0.1);
  box-shadow: var(--ms-shadow);
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-family: "Sofia Pro", "Sofia Pro Black", "Avenir Next", "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ms-beige-2);
}

.info-card p {
  margin: 0;
  color: var(--ms-muted);
  line-height: 1.65;
}

.about-eder__photo-wrap {
  min-height: 520px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  padding-top: 24px;
}

.about-eder__photo-wrap img {
  max-height: 560px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,0.42));
}

.about-eder__content h2 {
  margin: 18px 0 12px;
  font-family: "Sofia Pro", "Sofia Pro Black", "Avenir Next", "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff8ef;
}

.about-eder__content p {
  margin: 0 0 14px;
  color: var(--ms-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.about-eder__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-box {
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-box h2 {
  margin: 16px 0 10px;
  font-family: "Sofia Pro", "Sofia Pro Black", "Avenir Next", "Montserrat", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff8ef;
}

.cta-box p {
  margin: 0;
  color: var(--ms-muted);
  line-height: 1.7;
}

.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(239,226,207,0.06);
  background: rgba(24, 2, 2, 0.58);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer__inner strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--ms-beige-2);
}

.footer__inner p {
  margin: 0;
  color: var(--ms-muted);
  max-width: 56ch;
  line-height: 1.65;
}

.footer__social {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer__social span {
  color: var(--ms-muted);
  font-size: 0.92rem;
}

.footer__social a {
  color: var(--ms-primary-2);
  font-weight: 700;
}

.lead-pop {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 330px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(36, 7, 5, 0.95);
  border: 1px solid rgba(216, 200, 176, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.lead-pop.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lead-pop__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--ms-primary-2), var(--ms-primary));
  box-shadow: 0 0 0 8px rgba(196, 115, 36, 0.08);
  flex: 0 0 auto;
}

.lead-pop__text {
  display: grid;
  gap: 3px;
  line-height: 1.25;
}

.lead-pop__text strong {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ms-beige-2);
}

.lead-pop__text span {
  font-size: 0.86rem;
  color: var(--ms-muted);
}

body .wa-floating,
body .whatsapp-float,
body .whatsapp-button,
body .whatsapp-widget-old,
body .zap-float,
body .whats-modal-trigger,
body #whatsapp-button,
body #whatsapp-widget,
body #whatsapp-modal {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 1100px) {
  .hero__grid,
  .hero__grid--no-image {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  .hero__content {
    order: 1;
    max-width: none;
  }

  .hero__form {
    order: 2;
    justify-content: stretch;
  }

  .hero h1,
  .hero__lead {
    max-width: none;
  }

  .form-card {
    max-width: none;
  }

  .about-method__grid,
  .about-eder__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .topbar__inner {
    min-height: auto;
    padding: 12px 0 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__text {
    font-size: 0.96rem;
  }

  .countdown {
    gap: 8px;
  }

  .countdown__item {
    min-width: 68px;
    padding: 10px 10px 9px;
    border-radius: 14px;
  }

  .hero {
    padding: 34px 0 20px;
    background:
      linear-gradient(180deg, rgba(33,3,2,0.90) 0%, rgba(33,3,2,0.74) 34%, rgba(33,3,2,0.90) 100%),
      url("/images/banner.png") center center / cover no-repeat;
  }

  .hero__badges {
    gap: 10px;
    margin-bottom: 16px;
  }

  .pill {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.72rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero__benefits {
    gap: 10px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .form-card__header h2 {
    font-size: 2rem;
  }

  .video-carousel__track {
    grid-auto-columns: 76%;
  }

  .carousel-btn {
    display: none;
  }

  .about-eder__photo-wrap {
    min-height: 360px;
  }

  .about-eder__photo-wrap img {
    max-height: 400px;
  }

  .cta-box,
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__social {
    justify-items: start;
  }

  .lead-pop {
    left: 12px;
    right: 78px;
    bottom: 12px;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .countdown__item {
    min-width: 60px;
  }

  .countdown__item span {
    font-size: 1rem;
  }

  .video-carousel__track {
    grid-auto-columns: 84%;
  }

  .form-field input,
  .form-field textarea,
  .form-field select {
    padding: 14px 14px;
    border-radius: 12px;
  }

  .btn {
    min-height: 52px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

.about-eder__photo-wrap {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  justify-content: center;
}

.about-eder__video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
  border: 0;
  display: block;
  margin: 0 auto;
}