:root {
  --gold: #f5c500;
  --gold-light: #ffe066;
  --gold-dark: #c9920a;
  --white: #ffffff;
  --off-white: #f8f6ef;
  --dark: #111111;
  --gray: #888;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: #0e0e0e;
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 197, 0, 0.18);
}
.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: scale(1.04);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 0%,
      rgba(245, 197, 0, 0.13) 0%,
      transparent 70%
    ),
    #0a0a0a;
}
.hero-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245, 197, 0, 0.15), transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 197, 0, 0.12);
  border: 1px solid rgba(245, 197, 0, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.9;
  text-align: center;
  letter-spacing: 4px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero-sub,
.politica li {
  font-size: 1.15rem;
  color: #bbb;
  font-weight: 400;
  margin-top: 16px;
  text-align: center;
  letter-spacing: 1px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 700;
}

/* ─── BANNERS ROW ─── */
.banners-section {
  padding: 60px 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #0a0a0a;
}
.banners-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.banners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
}
.banner-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(245, 197, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
  border: 1.5px solid rgba(245, 197, 0, 0.18);
}
.banner-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow:
    0 18px 60px rgba(245, 197, 0, 0.32),
    0 4px 16px rgba(0, 0, 0, 0.5);
  border-color: rgba(245, 197, 0, 0.5);
}
.banner-card img {
  display: block;
  max-height: 600px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
}

/* ─── FEATURES ─── */
.features {
  padding: 70px 20px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feat-card {
  background: linear-gradient(145deg, #161616, #111);
  border: 1px solid rgba(245, 197, 0, 0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.feat-card:hover {
  border-color: rgba(245, 197, 0, 0.45);
  transform: translateY(-4px);
}
.feat-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 0, 0.12);
  border-radius: 12px;
}
.feat-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.feat-desc {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.55;
}

/* ─── WELCOME BONUS SECTION ─── */
.bonus-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f0f 0%, #161005 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}
.bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 80% at 50% 50%,
    rgba(245, 197, 0, 0.07),
    transparent
  );
  pointer-events: none;
}
.bonus-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.bonus-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.bonus-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 16px;
}
.bonus-title .gold {
  color: var(--gold);
}
.bonus-desc {
  font-size: 1.05rem;
  color: #aaa;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.bonus-pill {
  background: rgba(245, 197, 0, 0.07);
  border: 1.5px solid rgba(245, 197, 0, 0.22);
  border-radius: var(--radius);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.bonus-pill:hover {
  background: rgba(245, 197, 0, 0.12);
  border-color: var(--gold);
}
.bonus-pill .num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.bonus-pill .lbl {
  font-size: 0.82rem;
  color: #bbb;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ─── CTA BUTTON ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark);
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 30px rgba(245, 197, 0, 0.35);
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(245, 197, 0, 0.55);
}
.btn-gold svg {
  width: 18px;
}

/* ─── SUBSCRIPTION ─── */
.sub-section {
  padding: 80px 20px;
  background: #080808;
}
.sub-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.sub-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.sub-title .gold {
  color: var(--gold);
}
.sub-desc {
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.55;
}

.sub-box {
  background: linear-gradient(145deg, #141414, #0f0f0f);
  border: 1.5px solid rgba(245, 197, 0, 0.2);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 0 60px rgba(245, 197, 0, 0.06);
}
.sub-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.sub-input {
  flex: 1;
  background: #1a1a1a;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.sub-input::placeholder {
  color: #555;
}
.sub-input:focus {
  border-color: var(--gold);
}
.sub-btn {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-family: "Barlow", sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
  white-space: nowrap;
}
.sub-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 20px rgba(245, 197, 0, 0.4);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin-bottom: 20px;
}
.checkbox-row input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(245, 197, 0, 0.4);
  border-radius: 5px;
  background: #1a1a1a;
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.2s,
    background 0.2s;
  margin-top: 2px;
}
.checkbox-row input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.checkbox-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 8px;
  height: 12px;
  border: 2.5px solid var(--dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.checkbox-row label {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-row label a {
  color: var(--gold);
  text-decoration: none;
}
.checkbox-row label a:hover {
  text-decoration: underline;
}

/* ─── SUCCESS MESSAGE ─── */
.success-msg {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px;
  background: rgba(245, 197, 0, 0.08);
  border: 1.5px solid rgba(245, 197, 0, 0.35);
  border-radius: 14px;
  animation: fadeIn 0.5s ease;
}
.success-msg.show {
  display: flex;
}
.success-icon {
  width: 54px;
  height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.success-msg h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.success-msg p {
  font-size: 0.9rem;
  color: #aaa;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: #111;
  border-top: 1px solid rgba(245, 197, 0, 0.1);
  border-bottom: 1px solid rgba(245, 197, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.trust-item .t-icon {
  width: 28px;
  height: 28px;
  background: rgba(245, 197, 0, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* ─── FOOTER ─── */
footer {
  background: #080808;
  padding: 40px 20px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
}
.footer-links a {
  color: #666;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-disclaimer {
  font-size: 0.72rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 0.75rem;
  color: #333;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
  nav {
    padding: 0 16px;
  }
  .nav-links {
    display: none;
  }
  .sub-row {
    flex-direction: column;
  }
  .banner-card img {
    max-height: 320px;
  }
  .sub-box {
    padding: 24px 18px;
  }
  .bonus-section {
    padding: 50px 16px;
  }
}

.politica{
  padding: 100px 40px 50px;
  min-height: 80vh;
}

.politica .banners-label{
  text-align: center;
  margin-top: 20px;
}

.politica .bonus-title{
  text-align: center;
}

.politica li{
  list-style: none;
}