@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,700&display=swap");

:root {
  --sun: #ff6b1a;
  --sun-dark: #e05500;
  --sun-light: #ff9a56;
  --emerald: #00a878;
  --emerald-dk: #007a57;
  --cream: #fff8ef;
  --sand: #f5e6d0;
  --terracotta: #c94f2c;
  --terra-lt: #e8704a;
  --charcoal: #1a1208;
  --muted: #7a6555;
  --white: #ffffff;

  --font-head: "Bebas Neue", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-accent: "Playfair Display", serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sun: 0 8px 32px rgba(255, 107, 26, 0.35);
  --shadow-em: 0 8px 32px rgba(0, 168, 120, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.section-title span {
  color: var(--sun);
}
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.section-sub.left {
  margin: 0 0 3rem;
}

.divider-stripe {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
}
.divider-stripe span {
  height: 4px;
  border-radius: 2px;
}
.divider-stripe span:nth-child(1) {
  width: 40px;
  background: var(--sun);
}
.divider-stripe span:nth-child(2) {
  width: 16px;
  background: var(--emerald);
}
.divider-stripe span:nth-child(3) {
  width: 8px;
  background: var(--terracotta);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.btn-sun {
  background: var(--sun);
  color: var(--white);
  box-shadow: var(--shadow-sun);
}
.btn-sun:hover {
  background: var(--sun-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 107, 26, 0.45);
}
.btn-emerald {
  background: var(--emerald);
  color: var(--white);
  box-shadow: var(--shadow-em);
}
.btn-emerald:hover {
  background: var(--emerald-dk);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  border: 2.5px solid var(--sun);
  color: var(--sun);
}
.btn-outline:hover {
  background: var(--sun);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--sun);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.stars {
  color: var(--sun);
  letter-spacing: 2px;
}

.geo-dots {
  background-image: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.12) 1.5px,
    transparent 1.5px
  );
  background-size: 28px 28px;
}
.geo-lines {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(255, 107, 26, 0.06) 12px,
    rgba(255, 107, 26, 0.06) 13px
  );
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 239, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(255, 107, 26, 0.12);
  padding: 0.9rem 0;
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(255, 107, 26, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo i {
  color: var(--sun);
  font-size: 1.4rem;
}
.nav-logo .logo-dot {
  color: var(--emerald);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sun);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--sun);
}
.nav-links a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background: var(--cream);
}

.hero-bg-split {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-split::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--sun) 0%,
    var(--terracotta) 60%,
    #8b2500 100%
  );
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-bg-split::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.sun-rays {
  position: absolute;
  top: -60px;
  right: 5%;
  width: 320px;
  height: 320px;
  z-index: 1;
  opacity: 0.12;
  animation: rotateSun 30s linear infinite;
}
@keyframes rotateSun {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInLeft 0.8s ease both;
}

.hero-eyebrow {
  font-family: var(--font-head);
  letter-spacing: 4px;
  font-size: 0.9rem;
  color: var(--emerald);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--emerald);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-title .line-sun {
  color: var(--sun);
  display: block;
}
.hero-title .line-em {
  color: var(--emerald);
  display: block;
  font-size: 80%;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 18, 8, 0.08);
}
.trust-item {
  text-align: center;
}
.trust-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--sun);
  line-height: 1;
}
.trust-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s 0.15s ease both;
  position: relative;
}

.slot-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow:
    0 24px 60px rgba(26, 18, 8, 0.18),
    0 4px 12px rgba(255, 107, 26, 0.15);
  position: relative;
  overflow: hidden;
}
.slot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--sun),
    var(--terracotta),
    var(--emerald)
  );
}
.slot-card-label {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.slot-reels {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.reel {
  flex: 1;
  height: 100px;
  background: var(--sand);
  border-radius: 12px;
  border: 2px solid rgba(255, 107, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--sun);
  animation: reelBounce 2.5s ease-in-out infinite;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
}
.reel:nth-child(2) {
  animation-delay: 0.4s;
  color: var(--emerald);
}
.reel:nth-child(3) {
  animation-delay: 0.8s;
  color: var(--terracotta);
}
@keyframes reelBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.slot-payline {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--sun),
    var(--emerald),
    transparent
  );
  border-radius: 2px;
  margin: 0 0.5rem 1.5rem;
  animation: pulseLine 2s ease-in-out infinite;
}
@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.slot-win-display {
  text-align: center;
  background: linear-gradient(135deg, var(--sand), #fff0dc);
  border-radius: 10px;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
}
.slot-win-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.slot-win-val {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--sun);
  letter-spacing: 2px;
  animation: countUp 3s ease-in-out infinite;
}
@keyframes countUp {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.slot-play-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--sun), var(--sun-dark));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sun);
}
.slot-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 26, 0.5);
}

.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.82rem;
  animation: floatBadge 3s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge i {
  color: var(--sun);
}
.float-badge-1 {
  top: -16px;
  left: -20px;
  animation-delay: 0s;
}
.float-badge-2 {
  bottom: 30px;
  right: -24px;
  animation-delay: 1.5s;
  color: var(--emerald);
}
.float-badge-2 i {
  color: var(--emerald);
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

#acerca {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#acerca::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.07) 0%,
    transparent 70%
  );
}
.acerca-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.acerca-text .section-title {
  text-align: left;
}
.acerca-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.9;
}
.acerca-text p strong {
  color: var(--charcoal);
}

.acerca-visual {
  background: linear-gradient(135deg, var(--sand) 0%, #ffe8cc 100%);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 26, 0.12);
}
.acerca-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.08) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}
.acerca-big-icon {
  font-size: 6rem;
  color: var(--sun);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(255, 107, 26, 0.3));
}
.acerca-visual h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}
.acerca-visual p {
  color: var(--muted);
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.advantage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.advantage-card {
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.advantage-card:nth-child(1) {
  background: linear-gradient(135deg, #fff3ea, #ffe4cc);
  border: 1px solid rgba(255, 107, 26, 0.15);
}
.advantage-card:nth-child(2) {
  background: linear-gradient(135deg, #e8f9f4, #c8efe5);
  border: 1px solid rgba(0, 168, 120, 0.15);
}
.advantage-card:nth-child(3) {
  background: linear-gradient(135deg, #fff3ea, #fddfc8);
  border: 1px solid rgba(201, 79, 44, 0.15);
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.advantage-card:nth-child(1) .adv-icon {
  background: var(--sun);
  color: var(--white);
}
.advantage-card:nth-child(2) .adv-icon {
  background: var(--emerald);
  color: var(--white);
}
.advantage-card:nth-child(3) .adv-icon {
  background: var(--terracotta);
  color: var(--white);
}
.advantage-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.advantage-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

#juegos {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
#juegos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 107, 26, 0.03) 20px,
    rgba(255, 107, 26, 0.03) 21px
  );
}
#juegos .section-title {
  color: var(--white);
}
#juegos .section-title span {
  color: var(--sun);
}
#juegos .section-sub {
  color: rgba(255, 255, 255, 0.5);
}
#juegos .section-label {
  color: var(--sun-light);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  background: #251c10;
  border: 1px solid rgba(255, 107, 26, 0.15);
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(255, 107, 26, 0.25);
}

.game-preview {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-1 .game-preview {
  background: linear-gradient(135deg, #2a1500, #5c2a00, #3d1a00);
}
.game-2 .game-preview {
  background: linear-gradient(135deg, #001a10, #003d20, #001e12);
}

.game-preview-icon {
  font-size: 5rem;
  color: var(--sun);
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(255, 107, 26, 0.5));
}
.game-2 .game-preview-icon {
  color: var(--emerald);
  filter: drop-shadow(0 0 24px rgba(0, 168, 120, 0.5));
}
@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.game-preview-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sun);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.8rem;
  border-radius: 4px;
}
.game-2 .game-preview-badge {
  background: var(--emerald);
}

.game-info {
  padding: 1.5rem;
}
.game-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.game-meta {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.game-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.game-tag {
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.2);
  color: var(--sun-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.game-2 .game-tag {
  background: rgba(0, 168, 120, 0.1);
  border-color: rgba(0, 168, 120, 0.2);
  color: #4dcdaa;
}
.game-play-btn {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.game-1 .game-play-btn {
  background: linear-gradient(135deg, var(--sun), var(--terracotta));
  color: var(--white);
}
.game-2 .game-play-btn {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dk));
  color: var(--white);
}
.game-play-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

#game-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 2, 0.98);
  z-index: 9999;
  flex-direction: column;
}
.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: #1a0e05;
  border-bottom: 1px solid rgba(255, 107, 26, 0.2);
  flex-shrink: 0;
}
.overlay-title {
  font-family: var(--font-head);
  color: var(--sun);
  font-size: 1.3rem;
  letter-spacing: 2px;
}
#close-overlay {
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.3);
  color: var(--sun);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
#close-overlay:hover {
  background: var(--sun);
  color: var(--white);
}
#game-frame {
  width: 100%;
  flex: 1;
  border: none;
  display: block;
}
.game-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
}
.game-placeholder i {
  font-size: 4rem;
  color: var(--sun);
}
.game-placeholder strong {
  color: var(--white);
  font-size: 1.1rem;
}

#como {
  background: var(--sand);
}
#como .section-title {
  text-align: center;
}
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-connector {
  position: absolute;
  top: 2.8rem;
  left: calc(16.7% + 1.5rem);
  right: calc(16.7% + 1.5rem);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--sun) 0,
    var(--sun) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border: 1px solid rgba(255, 107, 26, 0.08);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 107, 26, 0.12);
}
.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--sun), var(--sun-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sun);
}
.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fff3ea, #ffe4cc);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(255, 107, 26, 0.15);
}
.step-icon-wrap i {
  font-size: 1.8rem;
  color: var(--sun);
}
.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.step-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

#promo {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#promo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sun),
    var(--emerald),
    var(--terracotta)
  );
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.promo-card-top {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}
.promo-card:nth-child(1) .promo-card-top {
  background: linear-gradient(135deg, var(--sun), var(--terracotta));
  color: var(--white);
}
.promo-card:nth-child(2) .promo-card-top {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dk));
  color: var(--white);
}
.promo-card:nth-child(3) .promo-card-top {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: var(--white);
}
.promo-icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--white);
}
.promo-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 1px;
}
.promo-unit {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}
.promo-card-bottom {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.promo-card-bottom h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.promo-card-bottom p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.promo-disclaimer {
  color: rgba(122, 101, 85, 0.5);
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 0.8rem;
}

#resenas {
  background: var(--sand);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 107, 26, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.review-card::before {
  content: "\201C";
  font-family: var(--font-accent);
  font-size: 6rem;
  color: rgba(255, 107, 26, 0.1);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 107, 26, 0.1);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.review-card:nth-child(1) .review-avatar {
  background: linear-gradient(135deg, #fff3ea, #ffd9b5);
  color: var(--sun);
}
.review-card:nth-child(2) .review-avatar {
  background: linear-gradient(135deg, #e8f9f4, #b5edd9);
  color: var(--emerald);
}
.review-card:nth-child(3) .review-avatar {
  background: linear-gradient(135deg, #f9e8e8, #edb5b5);
  color: var(--terracotta);
}
.review-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.review-date {
  font-size: 0.78rem;
  color: var(--muted);
}
.review-stars {
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
}
.review-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

#contacto {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2d1a08 100%);
  position: relative;
  overflow: hidden;
}
#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 107, 26, 0.05) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
}
#contacto .section-title {
  color: var(--white);
}
#contacto .section-title span {
  color: var(--sun);
}
#contacto .section-label {
  color: var(--sun-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon-sq {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-sq i {
  color: var(--sun);
}
.contact-lbl {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-val {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid rgba(26, 18, 8, 0.12);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-error {
  color: #e02020;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}
.form-group.error input,
.form-group.error textarea {
  border-color: #e02020;
}
.form-group.error .form-error {
  display: block;
}

#faq {
  background: var(--white);
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(26, 18, 8, 0.08);
  background: var(--cream);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: var(--sun);
  background: var(--white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--charcoal);
  gap: 1rem;
  user-select: none;
}
.faq-question:hover {
  color: var(--sun);
}
.faq-icon {
  color: var(--sun);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}
.faq-answer p {
  color: var(--muted);
  padding-bottom: 1.2rem;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

#footer {
  background: #0f0900;
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 107, 26, 0.1);
}
.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.footer-brand .nav-logo i {
  color: var(--sun);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--sun);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.87rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--sun);
}
.footer-disclaimer {
  background: rgba(255, 107, 26, 0.06);
  border: 1px solid rgba(255, 107, 26, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  line-height: 1.8;
}
.footer-disclaimer strong {
  color: var(--sun-light);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.25);
  color: var(--sun-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 880px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 107, 26, 0.25);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 8888;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
  animation: slideUpBanner 0.5s ease;
}
@keyframes slideUpBanner {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
.cookie-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  flex: 1;
  min-width: 200px;
}
.cookie-text strong {
  color: var(--white);
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
#cookie-banner.hidden {
  display: none;
}

#age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 2, 0.97);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.age-gate-box {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.5s ease;
  position: relative;
  overflow: hidden;
}
.age-gate-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--sun),
    var(--terracotta),
    var(--emerald)
  );
}
.age-gate-icon {
  margin-bottom: 1.2rem;
}
.age-gate-icon i {
  font-size: 4rem;
  color: var(--sun);
}
.age-gate-box h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.age-gate-box p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.age-gate-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.age-gate-no {
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: 2px solid rgba(26, 18, 8, 0.12);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
}
.age-gate-no:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.page-hero {
  background: linear-gradient(135deg, var(--sun) 0%, var(--terracotta) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 24px 24px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  position: relative;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

.page-content {
  padding: 5rem 0;
  max-width: 860px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--sun);
  margin: 2.5rem 0 1rem;
}
.page-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--emerald);
  margin: 1.5rem 0 0.7rem;
}
.page-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.9;
}
.page-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
}
.page-content ul li {
  color: var(--muted);
  margin-bottom: 0.5rem;
  list-style: disc;
}
.page-content ul li::marker {
  color: var(--sun);
}
.page-content a {
  color: var(--sun);
  text-decoration: underline;
}
.info-box {
  background: linear-gradient(135deg, #fff3ea, #ffe8cc);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid var(--sun);
}
.info-box p {
  color: var(--charcoal);
  margin: 0;
}
.warn-box {
  background: #fff0ee;
  border: 1px solid rgba(201, 79, 44, 0.2);
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 2rem 0;
}
.warn-box p {
  color: var(--terracotta);
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.2rem;
    border-bottom: 2px solid rgba(255, 107, 26, 0.1);
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .slot-card {
    max-width: 340px;
  }

  .acerca-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .advantage-cards {
    grid-template-columns: 1fr;
  }
  .games-grid {
    grid-template-columns: 1fr;
  }
  .steps-wrap {
    grid-template-columns: 1fr;
  }
  .steps-connector {
    display: none;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
  }
  @keyframes slideUpBanner {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .age-gate-actions {
    flex-direction: column;
  }
  .age-gate-box {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .reel {
    height: 76px;
    font-size: 1.8rem;
  }
}
