:root {
  --bg-0: #070b14;
  --bg-1: #0b1220;
  --bg-2: #101a2d;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.09);
  --stroke: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.56);
  --gold: #c9a35e;
  --gold2: #e0c07a;
  --blueBtn: #243b67;
  --greenWhats: #25d366;

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 20px 50px rgba(0, 0, 0, 0.36);
  --shadow-gold: 0 8px 24px rgba(201, 163, 94, 0.28);
  --blur: 14px;

  --max-content: 1280px;
  --nav-height: 78px;
  --section-gap: 30px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  background:
    radial-gradient(1300px 800px at 12% 0%, rgba(36, 59, 103, 0.45), transparent 60%),
    radial-gradient(900px 600px at 90% 8%, rgba(201, 163, 94, 0.2), transparent 70%),
    linear-gradient(180deg, #091120 0%, var(--bg-0) 52%, #050811 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.82) 0.4px, transparent 0.4px);
  background-size: 2.5px 2.5px;
  mix-blend-mode: soft-light;
}

body::after {
  background:
    radial-gradient(460px 240px at 15% 28%, rgba(255, 212, 139, 0.12), transparent 80%),
    radial-gradient(560px 300px at 84% 44%, rgba(188, 209, 255, 0.1), transparent 84%),
    radial-gradient(280px 220px at 46% 78%, rgba(255, 255, 255, 0.08), transparent 84%);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.2;
}

p,
li,
blockquote,
label,
summary,
input,
textarea,
select,
button,
a {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

p,
li,
label {
  color: var(--muted);
}

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

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

.container {
  width: min(var(--max-content), calc(100% - 44px));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.page-title {
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  color: #f5dfae;
}

.divider-gold {
  width: min(190px, 50vw);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(224, 192, 122, 0.95) 50%, transparent 100%);
}

.glass-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--r-md);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  box-shadow: var(--shadow-sm);
}

.btn-primary,
.btn-gold,
.btn-secondary,
.btn-icon,
.chip,
button {
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn-primary,
.btn-gold {
  color: #181103;
  border-color: rgba(224, 192, 122, 0.55);
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold2) 100%);
  box-shadow: var(--shadow-gold);
}

.btn-secondary,
button,
.chip,
.btn-icon {
  color: rgba(255, 255, 255, 0.96);
  border-color: var(--stroke);
  background: linear-gradient(140deg, rgba(36, 59, 103, 0.95), rgba(16, 27, 48, 0.94));
}

.btn-icon {
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
}

.chip {
  min-height: 34px;
  border-radius: var(--r-pill);
  padding: 0 14px;
  font-size: 0.88rem;
  width: auto;
}

.chip-soft {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(224, 192, 122, 0.35);
  color: var(--gold2);
}

.btn-sm {
  min-height: 34px;
  padding-inline: 12px;
  font-size: 0.88rem;
}

button:hover,
.btn-primary:hover,
.btn-gold:hover,
.btn-secondary:hover,
.btn-icon:hover,
.chip:hover {
  filter: brightness(1.06);
  border-color: rgba(224, 192, 122, 0.62);
}

button:active,
.btn-primary:active,
.btn-gold:active,
.btn-secondary:active,
.btn-icon:active,
.chip:active {
  transform: translateY(1px);
}

button:disabled,
.btn-primary:disabled,
.btn-gold:disabled,
.btn-secondary:disabled,
.btn-icon:disabled,
.chip:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

input,
select,
textarea {
  width: 100%;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 11, 20, 0.48);
  color: rgba(255, 255, 255, 0.95);
  min-height: 44px;
  padding: 10px 12px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.84);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(224, 192, 122, 0.92);
  outline-offset: 2px;
}

.check-row {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.helper-text {
  color: var(--muted2);
  font-size: 0.86rem;
}

.icon-circle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.icon-circle.whatsapp {
  border-color: rgba(37, 211, 102, 0.5);
  color: #d9ffe8;
  background: rgba(37, 211, 102, 0.18);
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(7, 11, 20, 0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-header h1,
.page-header h2,
.page-header h3 {
  font-size: 1.12rem;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 75;
  display: inline-flex;
  justify-content: center;
  min-height: 50px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-gold);
}

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  border: 1px solid var(--stroke);
  border-radius: 16px 16px 0 0;
  background: linear-gradient(160deg, rgba(11, 19, 34, 0.98), rgba(7, 11, 20, 0.98));
  box-shadow: var(--shadow-md);
  padding: 14px;
  transform: translateY(100%);
  transition: transform 200ms ease;
  max-height: 82vh;
  overflow: auto;
}

.sheet.is-open {
  transform: translateY(0);
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 10, 0.62);
  z-index: 119;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

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

.skeleton {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--max-content), calc(100% - 20px));
  }
}

@media (max-width: 390px) {
  .container {
    width: min(var(--max-content), calc(100% - 14px));
  }

  .sticky-cta {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}
