:root {
  --bg: #0b0914;
  --card: rgba(27, 21, 45, 0.88);
  --gold: #f2c76e;
  --gold-light: #ffe6a6;
  --text: #fffaf0;
  --muted: #d0c8da;
  --line: rgba(242, 199, 110, 0.23);
  --green: #25d366;
  --danger: #ffb4b4;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(104, 69, 142, 0.24), transparent 32rem),
    radial-gradient(circle at 90% 28%, rgba(203, 147, 58, 0.12), transparent 28rem),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
}

input, textarea, button { font: inherit; }
input, textarea { -webkit-user-select: text; user-select: text; }
a { color: inherit; }

.pixel, .hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.brand-sun {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #5e3d0d;
  background: radial-gradient(circle, #fff3bd 8%, var(--gold) 60%, #c78b2e);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(242, 199, 110, 0.42);
}

.header-note { color: var(--muted); font-size: 16px; }
.section { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.hero {
  min-height: calc(100vh - 82px);
  padding-block: 40px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(38px, 5vw, 64px);
}

.hero-copy { animation: rise 0.7s ease-out both; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
}

.hero-details {
  grid-column: 1 / -1;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  background: rgba(24, 19, 39, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.hero-details > p {
  margin: 0;
  font-size: 18px;
}

.hero-details .check-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-details .check-list li {
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.4;
}

.hero-details .check-list li::before {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li { position: relative; padding-left: 40px; font-size: 19px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #4d3308;
  background: var(--gold);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.form-card {
  position: relative;
  padding: 36px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%), var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: rise 0.7s 0.12s ease-out both;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: radial-gradient(circle at 50% 0, rgba(242, 199, 110, 0.18), transparent 46%);
  border-radius: inherit;
  filter: blur(15px);
}

.sun-mark {
  position: absolute;
  top: -29px;
  right: 30px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #6c480d;
  background: radial-gradient(circle, #fff8d6, #f0c260 62%, #b8761c);
  border: 4px solid #141024;
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(242, 199, 110, 0.5);
  animation: glow 3s ease-in-out infinite;
}

.form-card h2 { margin-bottom: 10px; font-size: 30px; font-weight: 500; }
.form-card > p { margin: 0 0 24px; color: var(--muted); }
.lead-form { display: grid; }
.lead-form label { margin: 0 0 7px; color: #f7efd9; font-size: 16px; font-weight: 700; }

.lead-form input {
  width: 100%;
  min-height: 58px;
  margin: 0 0 18px;
  padding: 14px 17px;
  color: #20182a;
  background: #fffefa;
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 199, 110, 0.17);
}

.lead-form input::placeholder { color: #79717e; }

.button {
  min-height: 60px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 13px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  touch-action: manipulation;
}

.button:hover { transform: translateY(-2px); filter: brightness(1.05); }
.button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.button-primary {
  color: #342108;
  background: linear-gradient(135deg, #ffe6a2, #e4aa42);
  box-shadow: 0 12px 32px rgba(211, 151, 47, 0.24);
}

button:disabled { opacity: 0.68; cursor: wait; transform: none !important; }
.button-loader {
  display: none;
  width: 21px;
  height: 21px;
  border: 3px solid rgba(52, 33, 8, 0.3);
  border-top-color: #342108;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.is-loading .button-loader { display: block; }

.or {
  margin: 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aaa1b5;
  font-size: 14px;
  text-transform: uppercase;
}
.or::before, .or::after { content: ""; height: 1px; flex: 1; background: rgba(255, 255, 255, 0.12); }

.button-whatsapp {
  width: 100%;
  color: #082b15;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.18);
}

.wa-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--green);
  background: #fff;
  border-radius: 50%;
  font-size: 15px;
}

.privacy-note { margin: 14px 0 0 !important; color: #aaa1b5 !important; font-size: 14px; text-align: center; }
.form-status { min-height: 0; margin: 10px 0 0; color: var(--danger); font-size: 15px; font-weight: 700; }
.form-status:empty { display: none; }

.info-section {
  padding-block: 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(36, 29, 56, 0.92), rgba(18, 14, 31, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
}

.info-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(242, 199, 110, 0.16), transparent 67%);
}

.card-number { display: block; margin-bottom: 40px; color: var(--gold); font-size: 15px; font-weight: 800; letter-spacing: 0.12em; }
.info-card h2 { margin-bottom: 17px; color: var(--gold-light); font-size: 29px; font-weight: 500; }
.info-card p { margin: 0; color: var(--muted); font-size: 18px; }

.final-cta {
  position: relative;
  margin-bottom: 82px;
  padding: 72px 40px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(58, 42, 80, 0.75), rgba(23, 17, 38, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta h2 { position: relative; max-width: 800px; margin: 0 auto 30px; font-size: clamp(32px, 4vw, 49px); font-weight: 500; }
.final-cta .button { position: relative; min-width: 280px; }
.final-cta > p:last-child { position: relative; margin: 18px 0 0; color: var(--muted); font-size: 16px; }
.final-glow {
  position: absolute;
  top: -170px;
  left: 50%;
  width: 460px;
  height: 340px;
  background: radial-gradient(circle, rgba(242, 199, 110, 0.25), transparent 68%);
  transform: translateX(-50%);
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #9990a4;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.thanks-page { min-height: 100vh; padding: 30px 20px; display: grid; place-items: center; }
.thanks-card {
  width: min(650px, 100%);
  padding: 58px 42px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  animation: rise 0.7s ease-out both;
}
.thanks-sun {
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  color: #6c480d;
  background: radial-gradient(circle, #fff8d6, #f0c260 62%, #b8761c);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(242, 199, 110, 0.5);
  font-size: 36px;
}
.thanks-card h1 { margin-bottom: 22px; font-size: clamp(36px, 7vw, 55px); }
.thanks-card > p:not(.eyebrow) { margin: 0 auto 30px; color: var(--muted); font-size: 20px; }
.thanks-card .button { width: 100%; }
.back-link { display: inline-block; margin-top: 24px; color: var(--gold-light); }

.stars { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.stars i {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: drift 8s ease-in-out infinite;
}
.stars i:nth-child(1) { top: 15%; left: 5%; animation-delay: -1s; }
.stars i:nth-child(2) { top: 28%; left: 48%; animation-delay: -4s; }
.stars i:nth-child(3) { top: 65%; left: 92%; animation-delay: -2s; }
.stars i:nth-child(4) { top: 82%; left: 12%; animation-delay: -6s; }
.stars i:nth-child(5) { top: 8%; left: 78%; animation-delay: -3s; }
.stars i:nth-child(6) { top: 48%; left: 70%; animation-delay: -7s; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 26px rgba(242, 199, 110, 0.38); } 50% { box-shadow: 0 0 42px rgba(242, 199, 110, 0.64); } }
@keyframes drift { 0%, 100% { transform: translateY(0); opacity: 0.35; } 50% { transform: translateY(-18px); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 52px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .form-card { max-width: 620px; }
  .hero-details { grid-column: auto; grid-template-columns: 1fr; }
  .hero-details .check-list { grid-template-columns: 1fr; }
  .info-section { grid-template-columns: 1fr; }
  .info-card { min-height: 0; }
  .card-number { margin-bottom: 22px; }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .site-header, .section, footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 70px; }
  .header-note { display: none; }
  .brand { font-size: 18px; }
  .brand-sun { width: 36px; height: 36px; }
  .hero { padding-block: 38px 54px; gap: 52px; }
  .hero { padding-top: 14px; gap: 16px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { display: none; }
  h1 { margin-bottom: 8px; font-size: clamp(28px, 7.8vw, 35px); line-height: 1.05; }
  .lead { max-width: 350px; margin: 0 auto; font-size: 16px; line-height: 1.35; }
  .check-list { gap: 16px; }
  .check-list li { padding-left: 38px; font-size: 18px; }
  .form-card { padding: 24px 20px 20px; border-radius: 20px; }
  .sun-mark { right: 22px; width: 54px; height: 54px; }
  .form-card h2 { max-width: 260px; margin-bottom: 4px; font-size: 25px; }
  .form-card > p { margin-bottom: 16px; font-size: 15px; }
  .lead-form input { min-height: 56px; margin-bottom: 12px; }
  .button { min-height: 58px; }
  .lead-form label { margin-bottom: 4px; }
  .or { margin: 12px 0; }
  .privacy-note { margin-top: 9px !important; font-size: 12px; }
  .hero-details {
    padding: 24px 20px;
    gap: 20px;
  }
  .hero-details > p { font-size: 17px; }
  .hero-details .check-list li { font-size: 17px; }
  .info-section { padding-block: 58px; gap: 16px; }
  .info-card { padding: 28px 24px; }
  .info-card h2 { font-size: 27px; }
  .final-cta { margin-bottom: 58px; padding: 54px 22px; }
  .final-cta h2 { font-size: 34px; }
  .final-cta .button { width: 100%; min-width: 0; }
  footer { flex-direction: column; }
  .thanks-card { padding: 42px 22px; }
}

@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;
  }
}
