:root {
  --bg-main: #0b0b0d;
  --bg-soft: #140c08;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-strong: rgba(255, 255, 255, 0.06);

  --gold-1: #a36a16;
  --gold-2: #d4a64a;
  --gold-3: #f4d27a;
  --gold-4: #f6e7c1;

  --text-main: #f5f5f5;
  --text-soft: rgba(245, 245, 245, 0.76);
  --border-soft: rgba(244, 210, 122, 0.18);
  --shadow-gold: 0 12px 40px rgba(212, 166, 74, 0.15);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --container: 1200px;
  --transition: 0.28s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(244,210,122,0.10), transparent 25%),
    radial-gradient(circle at 85% 85%, rgba(212,166,74,0.08), transparent 30%),
    linear-gradient(180deg, #140a05 0%, #0b0b0d 45%, #09090b 100%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

iframe {
  border: 0;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
}

.site-bg-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.32;
  pointer-events: none;
}

.glow-1 {
  top: -80px;
  right: -120px;
  background: radial-gradient(circle, rgba(244,210,122,0.35), transparent 70%);
}

.glow-2 {
  bottom: -60px;
  left: -100px;
  background: radial-gradient(circle, rgba(163,106,22,0.32), transparent 70%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-3), var(--gold-1));
  color: #1b1309;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-soft);
  color: var(--gold-4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
}

.empty-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(244, 210, 122, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  box-shadow:
    0 12px 30px rgba(18, 140, 126, 0.35),
    0 0 0 0 rgba(37, 211, 102, 0);
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.3s ease;
  animation: whatsappPulse 7s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.06);
  box-shadow:
    0 16px 36px rgba(18, 140, 126, 0.42),
    0 0 0 8px rgba(37, 211, 102, 0.08);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}

@keyframes whatsappPulse {
  0%,
  88%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 12px 30px rgba(18, 140, 126, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0);
  }

  92% {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 16px 36px rgba(18, 140, 126, 0.42),
      0 0 0 10px rgba(37, 211, 102, 0.08);
  }

  96% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 12px 30px rgba(18, 140, 126, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;

  background-image:
    radial-gradient(circle at 25% 30%, rgba(244,210,122,0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(163,106,22,0.05), transparent 40%);

  opacity: 0.6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;

  background-image:
    linear-gradient(
      rgba(244,210,122,0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(244,210,122,0.04) 1px,
      transparent 1px
    );

  background-size: 140px 140px;
  opacity: 0.15;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244, 210, 122, 0.06) 12%,
    rgba(244, 210, 122, 0.22) 50%,
    rgba(244, 210, 122, 0.06) 88%,
    transparent 100%
  );
  pointer-events: none;
}

.section:not(.hero)::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: min(220px, 42vw);
  height: 36px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at center, rgba(244, 210, 122, 0.16), transparent 58%),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(244, 210, 122, 0.05) 20%,
      rgba(244, 210, 122, 0.12) 50%,
      rgba(244, 210, 122, 0.05) 80%,
      transparent 100%
    );
  filter: blur(10px);
}

.section-divider-mark {
  display: none;
}

.section:not(.hero) .section-heading::before {
  content: "";
  display: block;
  width: 72px;
  height: 10px;
  margin: 0 auto 20px;
  border-top: 1px solid rgba(244, 210, 122, 0.35);
  border-radius: 50%;
  opacity: 0.8;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1180px);
  height: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244, 210, 122, 0.05) 10%,
    rgba(244, 210, 122, 0.14) 30%,
    rgba(244, 210, 122, 0.26) 50%,
    rgba(244, 210, 122, 0.14) 70%,
    rgba(244, 210, 122, 0.05) 90%,
    transparent 100%
  );
}

.section:not(.hero)::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: min(220px, 40vw);
  height: 32px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at center, rgba(244, 210, 122, 0.14), transparent 58%),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(244, 210, 122, 0.04) 20%,
      rgba(244, 210, 122, 0.1) 50%,
      rgba(244, 210, 122, 0.04) 80%,
      transparent 100%
    );
  filter: blur(10px);
}