/* ============================================================
   LANDING PAGE — Davi Azevedo | Trader Esportivo
   Premium dark theme with gold accents
   ============================================================ */

/* ── Reset & Foundations ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Color Palette */
  --bg-primary:    #0a0a0f;
  --bg-secondary:  #111118;
  --bg-card:       rgba(18, 18, 28, 0.7);
  --bg-glass:      rgba(255, 255, 255, 0.04);
  --bg-glass-hover:rgba(255, 255, 255, 0.08);
  --border-glass:  rgba(255, 255, 255, 0.08);
  --border-glow:   rgba(200, 160, 60, 0.25);

  --gold-primary:  #d4a843;
  --gold-light:    #f0d078;
  --gold-dark:     #a07820;
  --red-accent:    #d90429;
  --blue-accent:   #3b82f6;
  --green-accent:  #22c55e;
  --purple-accent: #8b5cf6;

  --text-primary:  #f0ece4;
  --text-secondary:#a09888;
  --text-muted:    #6a6258;

  /* Typography */
  --font-display:  'Space Grotesk', 'Inter', sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:   clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.landing-page {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Typography ── */
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.landing-page a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.landing-page a:hover { color: var(--gold-light); }

/* ── Container ── */
.l-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ── TOP BAR (Barra Superior) ── */
.l-top-bar {
  background: linear-gradient(90deg, #130005 0%, #1c060a 50%, #130005 100%);
  border-bottom: 1px solid rgba(239, 68, 68, 0.25);
  color: #e4e1e9;
  font-size: 0.78rem;
  padding: 0.45rem 0;
  position: relative;
  z-index: 10005;
}

.l-top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.l-top-bar__text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.l-top-bar__badge {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.l-top-bar__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.l-top-bar__socials a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease;
}

.l-top-bar__socials a:hover {
  color: #ef4444;
}

@media (max-width: 768px) {
  .l-top-bar__socials {
    display: none;
  }
  .l-top-bar__text {
    font-size: 0.72rem;
    justify-content: center;
    width: 100%;
  }
}

/* ── NAVIGATION ── */
.l-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 10005;
  padding: 0.8rem 0;
  transition: all 0.4s var(--ease-out-expo);
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border-glass);
}

.l-nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.6rem 0;
}

.l-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.l-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.l-nav__logo:hover {
  transform: translateY(-1px);
}

.l-nav__logo-icon-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.45));
  transition: transform 0.3s ease;
}

.l-nav__logo:hover .l-nav__logo-icon-svg {
  transform: scale(1.08);
}

.l-logo-red {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
}

.l-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.l-nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.l-nav__links li {
  white-space: nowrap;
  flex-shrink: 0;
}

.l-nav__links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.l-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s var(--ease-out-expo);
}

.l-nav__links a:hover { color: var(--text-primary); }
.l-nav__links a:hover::after { width: 100%; }

.l-nav__cta {
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000 !important;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.l-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

/* Mobile menu toggle */
.l-nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
}

.l-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: 0.3s;
}

/* ── HERO SECTION ── */
.l-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.l-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.l-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.l-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    var(--bg-primary) 100%
  );
}

.l-hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.l-hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.l-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 6rem;
}

.l-hero__text { max-width: 600px; }

.l-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.l-hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.l-hero__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 50%, var(--text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.l-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 500px;
}

.l-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.l-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  border: none;
  text-decoration: none;
}

.l-btn--primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #000000 !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.l-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.5);
  color: #000000 !important;
}

.l-btn--ghost {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.l-btn--ghost:hover {
  background: var(--bg-glass-hover);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.l-hero__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.l-hero__photo-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  box-shadow:
    0 0 80px rgba(212, 168, 67, 0.15),
    0 30px 60px rgba(0, 0, 0, 0.7);
}

.l-hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0) 100%);
}

.l-hero__photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.5) 0%, rgba(212, 168, 67, 0.05) 50%, rgba(212, 168, 67, 0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.l-hero__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 15, 0.8) 100%),
    linear-gradient(to top, rgba(10, 10, 15, 0.85) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}

.l-hero__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* ── Stats Bar ── */
.l-stats {
  padding: 3rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: var(--bg-secondary);
}

.l-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.l-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.l-stats__number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.l-stats__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ── Section Common ── */
.l-section {
  padding: var(--section-pad) 0;
  position: relative;
}

.l-section .l-container {
  position: relative;
  z-index: 1;
}

.l-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.l-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.l-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-primary) 0%,
    rgba(10, 10, 15, 0.7) 50%,
    var(--bg-primary) 100%
  );
}

.l-section__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.l-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.l-section__tag::before,
.l-section__tag::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.5;
}

.l-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.l-section__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Specialty Cards (MMA, F1, Football) ── */
.l-specialties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.l-specialty-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.l-specialty-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 168, 67, 0.08);
}

.l-specialty-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.l-specialty-card:hover .l-specialty-card__img {
  transform: scale(1.05);
}

.l-specialty-card__overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(10, 10, 15, 0.9) 100%
  );
}

.l-specialty-card__body {
  padding: 1.5rem;
  position: relative;
}

.l-specialty-card__sport-icon {
  position: absolute;
  top: -28px;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.l-specialty-card__sport-icon--mma {
  background: linear-gradient(135deg, #d90429, #8b0000);
}
.l-specialty-card__sport-icon--f1 {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}
.l-specialty-card__sport-icon--football {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

.l-specialty-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.l-specialty-card__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.l-specialty-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.l-specialty-card__tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Products / Services ── */
.l-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.l-product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.l-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.l-product-card__img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.l-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.l-product-card:hover .l-product-card__img-wrap img {
  transform: scale(1.08);
}

.l-product-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(18, 18, 28, 0.95));
}

.l-product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.l-product-card__badge--live {
  background: rgba(217, 4, 41, 0.9);
  color: #fff;
}

.l-product-card__badge--new {
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
}

.l-product-card__badge--pro {
  background: rgba(212, 168, 67, 0.9);
  color: #000;
}

.l-product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.l-product-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.l-product-card__desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.l-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap 0.3s var(--ease-out-expo);
}

.l-product-card:hover .l-product-card__link { gap: 0.8rem; }

/* ── About Section ── */
.l-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.l-about__photo-stack {
  position: relative;
  height: 500px;
}

.l-about__photo-main {
  width: 340px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-glow);
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.l-about__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.l-about__photo-accent {
  position: absolute;
  width: 200px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  z-index: 1;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.l-about__photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.l-about__photo-accent--1 {
  top: 10%;
  right: 0;
  transform: rotate(3deg);
}

.l-about__photo-accent--2 {
  bottom: 0;
  right: 10%;
  transform: rotate(-2deg);
}

.l-about__content { max-width: 540px; }

.l-about__name {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.l-about__role {
  color: var(--gold-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.l-about__bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.l-about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.l-about__highlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.l-about__highlight-icon {
  font-size: 1.2rem;
  width: 32px;
  text-align: center;
}

.l-about__social {
  display: flex;
  gap: 0.75rem;
}

.l-about__social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.l-about__social a:hover {
  background: var(--bg-glass-hover);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ── Testimonials / Trust ── */
.l-trust {
  background: var(--bg-secondary);
}

.l-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.l-trust-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  transition: all 0.4s ease;
}

.l-trust-card:hover {
  border-color: var(--border-glow);
}

.l-trust-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.l-trust-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.l-trust-card__text {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── CTA Section ── */
.l-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.l-cta__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-cta__content {
  position: relative;
  z-index: 1;
}

.l-cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.l-cta__desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.l-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.l-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-glass);
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.l-footer__copy {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.l-footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.l-footer__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.l-footer__links a:hover { color: var(--text-primary); }

/* ── Scroll Animations ── */
.l-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.l-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.l-reveal--delay-1 { transition-delay: 0.1s; }
.l-reveal--delay-2 { transition-delay: 0.2s; }
.l-reveal--delay-3 { transition-delay: 0.3s; }
.l-reveal--delay-4 { transition-delay: 0.4s; }

/* ── Section Divider Glow ── */
.l-divider-glow {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-primary) 50%,
    transparent 100%
  );
  opacity: 0.2;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .l-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .l-hero__subtitle { margin-left: auto; margin-right: auto; }
  .l-hero__actions { justify-content: center; }

  .l-hero__photo-frame {
    width: 300px;
    height: 380px;
  }

  .l-specialties__grid,
  .l-products__grid,
  .l-trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .l-about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .l-about__photo-stack {
    height: 400px;
    display: flex;
    justify-content: center;
  }

  .l-about__photo-main {
    width: 280px;
    height: 350px;
  }

  .l-about__content { max-width: 100%; }
  .l-about__highlights { max-width: 500px; margin-left: auto; margin-right: auto; }
  .l-about__social { justify-content: center; }

  .l-stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .l-nav__links { display: none; }
  .l-nav__toggle { display: block; }

  .l-nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
  }

  .l-hero__photo-frame {
    width: 260px;
    height: 340px;
  }

  .l-specialties__grid,
  .l-products__grid,
  .l-trust__grid {
    grid-template-columns: 1fr;
  }

  .l-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .l-about__photo-accent { display: none; }

  .l-about__highlights {
    grid-template-columns: 1fr;
  }

  .l-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .l-hero__title { font-size: 2rem; }
  .l-btn { padding: 0.75rem 1.5rem; font-size: 0.88rem; }
}

/* ─── Jogo Responsável (+18) Banner ─── */
.l-responsible-gambling {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 1rem;
  background: rgba(8, 8, 12, 0.6);
}

.l-responsible-gambling__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.l-responsible-gambling__badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff3b30, #b91c1c);
  border: 2px solid #ffffff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.5px;
  font-family: system-ui, -apple-system, sans-serif;
  user-select: none;
}

.l-responsible-gambling__text {
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}

.l-responsible-gambling__text strong {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.03em;
}

.l-responsible-gambling__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 640px) {
  .l-responsible-gambling__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  .l-responsible-gambling__text {
    text-align: center;
  }
}
