:root {
  --bg-deep: #130b09;
  --bg-mid: #24110c;
  --surface: rgba(24, 13, 11, 0.58);
  --surface-strong: rgba(16, 10, 8, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #fbf4ed;
  --text-muted: #e9d5c5;
  --accent: #ff742b;
  --accent-hover: #ff8c4d;
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --shadow-md: 0 18px 45px rgba(7, 4, 3, 0.35);
  --shadow-sm: 0 8px 24px rgba(7, 4, 3, 0.22);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  background: radial-gradient(95% 110% at 10% 0%, #3d1f13 0%, transparent 52%),
    radial-gradient(120% 110% at 100% 15%, #5a260f 0%, transparent 48%),
    radial-gradient(90% 120% at 45% 100%, #2e1812 0%, transparent 58%),
    linear-gradient(180deg, #1b0d0b 0%, #140b09 100%);
  min-height: 100vh;
  position: relative;
}

/* Camadas extras para reforcar o visual premium com blur e vinheta */
body::before,
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
}

body::before {
  background: radial-gradient(58% 42% at 15% 20%, rgba(255, 126, 63, 0.28) 0%, transparent 100%),
    radial-gradient(44% 44% at 78% 18%, rgba(255, 91, 36, 0.22) 0%, transparent 100%),
    radial-gradient(52% 58% at 56% 78%, rgba(186, 66, 22, 0.21) 0%, transparent 100%);
  filter: blur(38px);
  transform: scale(1.05);
}

body::after {
  background: radial-gradient(120% 90% at 50% 115%, transparent 58%, rgba(0, 0, 0, 0.3) 100%);
}

.background-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  z-index: -1;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03) 0, rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 2px);
  mix-blend-mode: soft-light;
}

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

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

main,
.site-footer,
.site-header {
  position: relative;
  z-index: 1;
}

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

.section {
  padding: clamp(2.25rem, 4vw, 4.25rem) 0;
}

.site-header {
  padding: 1rem 0 0.5rem;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: min(220px, 58vw);
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}

.header-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-link {
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pill-link:hover,
.pill-link:focus-visible {
  color: var(--text);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.hero {
  padding-top: clamp(1.1rem, 2vw, 2rem);
}

.hero-grid {
  display: grid;
  gap: 1.35rem;
}

.coming-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 7.4vw, 3.45rem);
  line-height: 1.05;
  max-width: 18ch;
  text-wrap: balance;
}

.hero-subtitle {
  margin-top: 0.95rem;
  max-width: 60ch;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f6e7da;
}

.hero-benefits svg {
  width: 22px;
  height: 22px;
  padding: 0.2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero-benefits path {
  fill: none;
  stroke: #ffc599;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(43, 22, 17, 0.62), rgba(16, 10, 8, 0.52));
  box-shadow: var(--shadow-md);
  padding: clamp(1rem, 3vw, 1.55rem);
  backdrop-filter: blur(14px) saturate(135%);
}

.glass-card h2 {
  font-size: clamp(1.32rem, 4.6vw, 1.65rem);
  line-height: 1.2;
}

.card-subtitle {
  color: var(--text-muted);
  margin-top: 0.55rem;
  font-size: 0.96rem;
}

.waitlist-form {
  margin-top: 1rem;
}

.form-row {
  display: grid;
  gap: 0.7rem;
}

.waitlist-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.waitlist-form input:focus-visible {
  outline: none;
  border-color: rgba(255, 174, 123, 0.92);
  background: rgba(255, 255, 255, 0.11);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.85rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  min-height: 2.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.btn-primary {
  color: #fff;
  padding: 0.75rem 1.1rem;
  background: linear-gradient(122deg, var(--accent), #ff8f45);
  box-shadow: 0 12px 28px rgba(255, 116, 43, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(122deg, var(--accent-hover), #ff9f5d);
  transform: translateY(-1px);
}

.btn-secondary {
  margin-top: 0.9rem;
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.72rem 1rem;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.form-feedback {
  min-height: 1.4rem;
  margin-top: 0.55rem;
  font-size: 0.9rem;
}

.form-feedback[data-status="error"] {
  color: #ffd5c4;
}

.form-feedback[data-status="success"] {
  color: #c9ffdf;
}

.microcopy {
  margin-top: 0.2rem;
  color: rgba(255, 233, 219, 0.84);
  font-size: 0.82rem;
}

.section h2 {
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.cards-grid {
  display: grid;
  gap: 0.85rem;
}

.content-card,
.step-card,
.logo-slot,
.testimonials blockquote,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.content-card {
  padding: 1rem;
}

.content-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.content-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.step-card {
  position: relative;
  padding: 1rem;
}

.step-index {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-content: center;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffd3b1;
  background: rgba(255, 255, 255, 0.09);
  margin-bottom: 0.7rem;
}

.step-card h3 {
  margin-bottom: 0.35rem;
}

.step-card p {
  color: var(--text-muted);
}

.logo-strip {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.logo-slot {
  min-height: 4rem;
  display: grid;
  place-content: center;
  text-align: center;
  color: rgba(255, 234, 220, 0.75);
  font-size: 0.84rem;
  padding: 0.55rem;
}

.testimonials {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.testimonials blockquote {
  margin: 0;
  padding: 1rem;
}

.testimonials p {
  color: #f8ece3;
  font-size: 0.95rem;
}

.testimonials cite {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 235, 220, 0.72);
  font-style: normal;
  font-size: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border: 0;
  text-align: left;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font: inherit;
  font-weight: 600;
}

.faq-icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-content: center;
  line-height: 1;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-answer {
  color: var(--text-muted);
  padding: 0 1rem 1rem;
  font-size: 0.94rem;
}

.site-footer {
  padding: 1.8rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 2.6rem;
  height: 2.6rem;
}

.footer-brand p {
  color: rgba(255, 234, 220, 0.74);
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}

.footer-links a {
  color: rgba(255, 234, 220, 0.86);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 10;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 4, 3, 0.7);
  backdrop-filter: blur(5px);
}

.modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 1.5rem));
  background: linear-gradient(145deg, #24120d, #170d0a);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.2rem;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.modal-dialog p {
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.modal-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* Entrada com animacao leve; reduzida para usuarios com preferencia de menos movimento */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid rgba(255, 206, 167, 0.9);
  outline-offset: 2px;
}

body.modal-open {
  overflow: hidden;
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 1.4rem;
  }

  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 189, 145, 0.5), transparent);
  }

  .step-card {
    min-height: 100%;
  }

  .logo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero-copy h1 {
    max-width: 15ch;
  }

  .container {
    width: min(1160px, calc(100% - 4rem));
  }
}

@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;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
