*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:      #081225;
      --navy-mid:  #0A1A35;
      --navy-lt:   #0E2248;
      --blue:      #4DA8FF;
      --blue-lt:   #80CFFF;
      --blue-dk:   #1A5FA8;
      --gold:      #C8A24A;
      --gold-lt:   #D9B46E;
      --gold-dk:   #9A7430;
      --gold-pale: #E8CEAA;
      --white:     #F0F4FF;
      --gray:      #8896AA;
      --navbar-h:  70px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Raleway', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
      min-height: 100vh;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(var(--gold-dk), var(--gold));
      border-radius: 3px;
    }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: linear-gradient(180deg, rgba(5,10,22,0.97) 0%, rgba(8,18,37,0.93) 100%);
      backdrop-filter: blur(12px);
      height: var(--navbar-h);
      transition: background 0.3s;
    }
    .navbar.scrolled {
      background: rgba(5,10,22,0.98);
      box-shadow: 0 4px 30px rgba(0,0,0,0.6);
    }
    .navbar__inner {
      max-width: 1400px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      padding: 0 24px;
    }
    .navbar__border {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold-dk) 20%, var(--gold) 50%, var(--gold-dk) 80%, transparent 100%);
      opacity: 0.5;
    }

    /* Logo */
    .navbar__logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      margin-right: 40px;
    }
    .navbar__logo img {
      height: 48px;
      width: auto;
      filter: none;
    }

    /* Nav links */
    .navbar__nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      justify-content: center;
    }
    .nav-link {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 2px;
      color: var(--gray);
      padding: 8px 14px;
      position: relative;
      transition: color 0.25s;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .nav-link:hover, .nav-link.active { color: var(--white); }
    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 50%; transform: translateX(-50%);
      width: 50%; height: 1px;
      background: var(--gold);
      box-shadow: 0 0 6px var(--gold);
    }
    .nav-link .fa-chevron-down { font-size: 0.5rem; opacity: 0.7; }

    /* Dropdown */
    .nav-dropdown { position: relative; }
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: rgba(8,18,37,0.98);
      border: 1px solid rgba(200,162,74,0.3);
      border-radius: 6px;
      min-width: 140px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 8px 20px;
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 1.5px;
      color: var(--gray);
      transition: color 0.2s, padding-left 0.2s;
    }
    .dropdown-menu a:hover { color: var(--gold); padding-left: 26px; }

    /* Right side */
    .navbar__right {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
      margin-left: 20px;
    }
    /* .btn-account — estilos movidos para o bloco ornamental abaixo */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── LEFT SIDEBAR ── */
    .sidebar-left {
      position: fixed;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 500;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .sidebar-line {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      background: linear-gradient(180deg, transparent 0%, rgba(200,162,74,0.5) 20%, rgba(200,162,74,0.5) 80%, transparent 100%);
      z-index: -1;
    }
    .sidebar-nav { display: flex; flex-direction: column; gap: 8px; align-items: center; }
    .sidebar-item {
      position: relative;
      width: 36px; height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(200,162,74,0.25);
      background: rgba(8,18,37,0.8);
      color: var(--gray);
      font-size: 0.75rem;
      transition: all 0.3s;
      cursor: pointer;
    }
    .sidebar-item:hover, .sidebar-item.active {
      color: var(--gold);
      border-color: var(--gold);
      background: rgba(200,162,74,0.1);
    }
    .sidebar-item.active::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 50%;
      box-shadow: 0 0 12px rgba(200,162,74,0.4);
    }
    .sidebar-item::after {
      content: attr(data-label);
      position: absolute;
      left: calc(100% + 12px);
      white-space: nowrap;
      font-family: 'Cinzel', serif;
      font-size: 0.55rem;
      letter-spacing: 2px;
      color: var(--gold);
      background: rgba(8,18,37,0.95);
      border: 1px solid rgba(200,162,74,0.3);
      padding: 4px 10px;
      border-radius: 4px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .sidebar-item:hover::after, .sidebar-item.active::after { opacity: 1; }

    /* ── SOCIAL BAR ── */
    .social-bar {
      position: fixed;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 500;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .social-btn {
      width: 40px; height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid rgba(200,162,74,0.3);
      background: rgba(8,18,37,0.85);
      color: var(--gray);
      font-size: 0.85rem;
      transition: all 0.3s;
    }
    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(200,162,74,0.1);
      transform: scale(1.1);
      box-shadow: 0 0 14px rgba(200,162,74,0.2);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding-top: var(--navbar-h);
    }
    .particles-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg__image {
      position: absolute;
      inset: 0;
      background-image: url('../image/bg-apextale.jpg');
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
    }
    .hero-bg__overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(4,10,24,0.15) 0%, rgba(4,10,24,0.05) 30%, rgba(4,10,24,0.25) 70%, rgba(4,10,24,0.7) 100%),
        radial-gradient(ellipse 50% 60% at 50% 45%, rgba(4,10,24,0.3) 0%, transparent 70%);
    }
    .hero-bg__vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 30%, rgba(2,8,18,0.35) 65%, rgba(2,8,18,0.7) 100%);
    }

    /* Hero content */
    /* Dark radial blob behind hero content */
    .hero-blob {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -42%);
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(ellipse at center,
        rgba(3,8,20,0.82) 0%,
        rgba(4,10,25,0.70) 30%,
        rgba(5,12,28,0.45) 55%,
        rgba(5,12,28,0.15) 75%,
        transparent 100%
      );
      pointer-events: none;
      z-index: 4;
      filter: blur(18px);
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: 0 16px;
      max-width: 700px;
      margin-top: 60px;
    }
    .hero-logo-img {
      width: 600px;
      max-width: 90vw;
      filter: drop-shadow(0 0 24px rgba(77,168,255,0.6)) drop-shadow(0 0 50px rgba(77,168,255,0.3));
      animation: logoPulse 3.5s ease-in-out infinite;
      margin-bottom: 10px;
    }
    @keyframes logoPulse {
      0%, 100% { filter: drop-shadow(0 0 24px rgba(77,168,255,0.6)) drop-shadow(0 0 50px rgba(77,168,255,0.3)); }
      50% { filter: drop-shadow(0 0 34px rgba(77,168,255,0.9)) drop-shadow(0 0 70px rgba(77,168,255,0.5)); }
    }

    .hero-tagline {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.3rem, 3vw, 2rem);
      font-weight: 900;
      letter-spacing: 3px;
      text-transform: uppercase;
      background: linear-gradient(135deg, #FFD97A 0%, #E8A820 35%, #FFD060 60%, #C8821A 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: none;
      filter: drop-shadow(0 2px 12px rgba(200,130,30,0.5));
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .hero-desc {
      font-family: 'Raleway', sans-serif;
      font-size: clamp(0.8rem, 1.2vw, 0.92rem);
      font-weight: 400;
      color: rgba(200,215,240,0.88);
      line-height: 1.85;
      letter-spacing: 0.4px;
      margin-bottom: 28px;
    }

    /* JOGUE AGORA button */
    .btn-play {
      position: relative;
      display: inline-block;
      width: 320px;
      max-width: 90vw;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
      margin-top: 4px;
    }
    .btn-play img {
      width: 100%;
      display: block;
    }
    .btn-play .btn-play__default {
      display: block;
      transition: opacity 0.25s;
    }
    .btn-play .btn-play__hover {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.25s;
    }
    .btn-play:hover .btn-play__default { opacity: 0; }
    .btn-play:hover .btn-play__hover { opacity: 1; }
    .btn-play:hover {
      transform: translateY(-3px) scale(1.02);
      filter: drop-shadow(0 6px 18px rgba(200,162,74,0.5));
    }
    .btn-play:active { transform: translateY(0) scale(0.99); }
    .btn-play-label {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #f0e6c8;
      text-shadow: 0 1px 6px rgba(0,0,0,0.6), 0 0 14px rgba(200,162,74,0.3);
      pointer-events: none;
      z-index: 3;
      transition: color 0.25s;
    }
    .btn-play:hover .btn-play-label {
      color: #3a2800;
      text-shadow: none;
    }

    /* Hero bottom ornament */
    .hero-bottom-ornament {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      opacity: 0.6;
    }
    .ornament-line {
      display: block;
      width: 100px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,162,74,0.6));
    }
    .ornament-line:last-child {
      background: linear-gradient(270deg, transparent, rgba(200,162,74,0.6));
    }
    .ornament-diamond {
      display: block;
      width: 10px; height: 10px;
      background: transparent;
      border: 1.5px solid var(--gold);
      transform: rotate(45deg);
      box-shadow: 0 0 6px rgba(200,162,74,0.5);
    }

    /* ── WHY CHOOSE ── */
    .why-choose {
      position: relative;
      background: linear-gradient(180deg, rgba(5,12,28,0.98) 0%, rgba(6,16,36,0.99) 100%);
      padding: 70px 0 80px;
      overflow: hidden;
    }
    .why-choose::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold-dk) 20%, var(--gold) 50%, var(--gold-dk) 80%, transparent 100%);
      opacity: 0.4;
    }
    .why-choose__inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
    }
    .section-ornament {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 22px;
    }
    .orn-line {
      display: block;
      width: 80px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold));
    }
    .section-ornament .orn-line:last-child {
      background: linear-gradient(270deg, transparent, var(--gold));
    }
    .orn-diamond {
      display: block;
      width: 10px; height: 10px;
      background: var(--gold);
      transform: rotate(45deg);
      box-shadow: 0 0 10px var(--gold);
    }
    .why-choose__title, .section-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.1rem, 2.5vw, 1.6rem);
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--gold-pale);
      text-shadow: 0 0 20px rgba(200,162,74,0.3);
      margin-bottom: 50px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      position: relative;
      background: linear-gradient(145deg, rgba(10,25,55,0.95) 0%, rgba(8,18,42,0.98) 100%);
      border: 1px solid rgba(200,162,74,0.2);
      border-radius: 6px;
      padding: 36px 28px 32px;
      display: flex;
      align-items: center;
      gap: 24px;
      text-align: left;
      transition: border-color 0.3s, transform 0.3s;
      overflow: hidden;
    }
    .feature-card:hover {
      border-color: rgba(200,162,74,0.5);
      transform: translateY(-4px);
    }
    .feature-card:hover .feature-card__glow { opacity: 1; }
    .feature-card__glow {
      position: absolute;
      bottom: -30px; left: -30px;
      width: 120px; height: 120px;
      background: radial-gradient(circle, rgba(77,168,255,0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s;
    }
    .feature-card__icon-wrap {
      position: relative;
      flex-shrink: 0;
      width: 64px; height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-card__icon-bg {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1px solid rgba(200,162,74,0.3);
      background: rgba(10,25,60,0.8);
    }
    .feature-icon-svg {
      width: 44px; height: 44px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 0 6px rgba(77,168,255,0.5));
    }
    .feature-card__title {
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 8px;
    }
    .feature-card__desc {
      font-family: 'Raleway', sans-serif;
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.6;
    }

    /* ── NEWS SECTION ── */
    .news-section {
      padding: 70px 0 80px;
      background: linear-gradient(180deg, rgba(4,10,24,0.99) 0%, rgba(6,14,32,0.99) 100%);
      position: relative;
    }
    .news-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold-dk) 20%, var(--gold) 50%, var(--gold-dk) 80%, transparent 100%);
      opacity: 0.25;
    }
    .news-section__inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      text-align: left;
    }
    .news-card {
      background: linear-gradient(145deg, rgba(10,22,50,0.97), rgba(7,15,36,0.99));
      border: 1px solid rgba(200,162,74,0.18);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .news-card:hover {
      border-color: rgba(200,162,74,0.4);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }
    .news-card__img { position: relative; height: 180px; overflow: hidden; }
    .news-card__img-placeholder {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.4s;
    }
    .news-card:hover .news-card__img-placeholder { transform: scale(1.05); }
    .news-img-1 { background: radial-gradient(ellipse at 60% 40%, rgba(20,60,160,0.6), transparent 70%), linear-gradient(135deg, #050F28 0%, #0B1E50 50%, #071530 100%); }
    .news-img-2 { background: radial-gradient(ellipse at 40% 50%, rgba(100,20,180,0.4), transparent 70%), linear-gradient(135deg, #0A0520 0%, #1A0840 50%, #080318 100%); }
    .news-img-3 { background: radial-gradient(ellipse at 50% 60%, rgba(200,80,10,0.35), transparent 65%), linear-gradient(135deg, #180805 0%, #2A1008 50%, #100403 100%); }
    .news-card__tag {
      position: absolute;
      top: 12px; left: 12px;
      font-family: 'Cinzel', serif;
      font-size: 0.55rem;
      letter-spacing: 2px;
      font-weight: 700;
      color: var(--navy);
      background: var(--gold);
      padding: 4px 10px;
      border-radius: 2px;
    }
    .news-card__body { padding: 20px; }
    .news-card__date { font-size: 0.72rem; color: var(--gold); letter-spacing: 1px; display: block; margin-bottom: 8px; }
    .news-card__title { font-family: 'Cinzel', serif; font-size: 0.82rem; font-weight: 600; color: var(--white); letter-spacing: 1px; line-height: 1.5; margin-bottom: 10px; }
    .news-card__desc { font-size: 0.78rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
    .news-card__link { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; }
    .news-card__link:hover { gap: 10px; color: var(--gold-pale); }

    /* ── STATS ── */
    .stats-section {
      padding: 55px 0;
      background: linear-gradient(180deg, rgba(6,14,32,0.99) 0%, rgba(4,10,24,0.99) 100%);
      border-top: 1px solid rgba(200,162,74,0.15);
      border-bottom: 1px solid rgba(200,162,74,0.15);
    }
    .stats-section__inner { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
    .stats-grid { display: flex; align-items: center; justify-content: space-around; gap: 16px; }
    .stat-item { text-align: center; display: flex; flex-direction: column; gap: 6px; }
    .stat-number {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--gold);
      text-shadow: 0 0 20px rgba(200,162,74,0.4);
      line-height: 1;
    }
    .stat-label { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; }
    .stat-divider { width: 1px; height: 60px; background: linear-gradient(180deg, transparent, rgba(200,162,74,0.35), transparent); }

    /* ── FOOTER ── */
    .site-footer {
      position: relative;
      background: linear-gradient(180deg, rgba(3,7,18,0.99) 0%, #020508 100%);
      padding: 50px 0 30px;
    }
    .footer-border-top {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold-dk) 20%, var(--gold) 50%, var(--gold-dk) 80%, transparent 100%);
      opacity: 0.35;
    }
    .site-footer__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
    .footer-logo { display: flex; align-items: center; gap: 10px; }
    .footer-logo img { height: 36px; width: auto; opacity: 0.8; }
    .footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 28px; }
    .footer-nav a { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; color: var(--gray); transition: color 0.2s; }
    .footer-nav a:hover { color: var(--gold); }
    .footer-social { display: flex; gap: 14px; }
    .footer-social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(200,162,74,0.3); color: var(--gray); font-size: 0.8rem; transition: all 0.3s; }
    .footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,162,74,0.1); }
    .footer-copy { font-size: 0.7rem; color: rgba(100,120,150,0.6); letter-spacing: 0.5px; }

    /* ── AOS ── */
    [data-aos] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    [data-aos].aos-visible { opacity: 1; transform: translateY(0); }
    [data-aos][data-delay="150"] { transition-delay: 0.15s; }
    [data-aos][data-delay="300"] { transition-delay: 0.30s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .news-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
      .stats-grid { flex-wrap: wrap; }
      .stat-divider { display: none; }
    }
    @media (max-width: 768px) {
      .sidebar-left, .social-bar { display: none; }
      .hero-logo-img { width: 280px; }
      .hero-tagline { font-size: 1.1rem; }
    }
    @media (max-width: 480px) {
      .hero-logo-img { width: 220px; }
      .btn-play { width: 240px; }
    }

    /* Inline SVG icon helpers */
    .icon-chevron { display: inline-flex; align-items: center; opacity: 0.7; }
    .icon-chevron svg { stroke: currentColor; stroke-width: 2; fill: none; }
    .sidebar-item svg, .social-btn svg { display: block; }

    /* Language dropdown */
    .lang-dropdown {
      position: relative;
    }
    .lang-btn {
      background: transparent;
      border: 1px solid rgba(200,162,74,0.3);
      border-radius: 4px;
      color: var(--gray);
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 1px;
      padding: 6px 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: border-color 0.2s, color 0.2s;
    }
    .lang-btn:hover { border-color: var(--gold); color: var(--gold); }
    .lang-menu {
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: rgba(8,18,37,0.98);
      border: 1px solid rgba(200,162,74,0.3);
      border-radius: 6px;
      overflow: hidden;
      min-width: 80px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      box-shadow: 0 8px 24px rgba(0,0,0,0.5);
      z-index: 2000;
    }
    .lang-dropdown:hover .lang-menu,
    .lang-menu.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .lang-option {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      padding: 8px 14px;
      background: transparent;
      border: none;
      cursor: pointer;
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 1px;
      color: var(--gray);
      transition: background 0.2s, color 0.2s;
    }
    .lang-option:hover { background: rgba(200,162,74,0.1); color: var(--gold); }
    .lang-option.active { color: var(--gold-pale); }
    .flag-icon { width: 18px; height: 12px; object-fit: cover; border-radius: 2px; }

    /* ── MOBILE NAVBAR BUTTON ── */
    .btn-mobile-baixar {
      display: none;
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 2px;
      padding: 7px 14px;
      border-radius: 4px;
      border: 1.5px solid var(--gold);
      color: var(--gold-pale);
      background: linear-gradient(135deg, rgba(200,162,74,0.12), rgba(200,162,74,0.04));
      text-decoration: none;
      transition: background 0.3s, box-shadow 0.3s;
      white-space: nowrap;
    }
    .btn-mobile-baixar:hover {
      background: linear-gradient(135deg, rgba(200,162,74,0.25), rgba(200,162,74,0.1));
      box-shadow: 0 0 14px rgba(200,162,74,0.3);
    }

    /* ── MOBILE OVERLAY ── */
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 1998;
      backdrop-filter: blur(2px);
    }
    .mobile-overlay.visible { display: block; }

    /* ── MOBILE DRAWER ── */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(320px, 85vw);
      height: 100%;
      height: 100dvh;
      z-index: 1999;
      background: linear-gradient(180deg, rgba(5,12,28,0.99) 0%, rgba(8,18,40,0.99) 100%);
      border-left: 1px solid rgba(200,162,74,0.25);
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
    }
    .mobile-drawer.open { transform: translateX(0); }

    .mobile-drawer__header {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(200,162,74,0.15);
      flex-shrink: 0;
    }
    .mobile-drawer__close {
      background: transparent;
      border: 1px solid rgba(200,162,74,0.3);
      border-radius: 6px;
      color: var(--gray);
      width: 36px; height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
    }
    .mobile-drawer__close:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(200,162,74,0.1);
    }

    .mobile-drawer__nav {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 12px 0;
    }
    .mobile-drawer__link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 3px;
      color: var(--gray);
      text-decoration: none;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
      transition: color 0.2s, background 0.2s;
      border-bottom: 1px solid rgba(200,162,74,0.07);
    }
    .mobile-drawer__link:hover,
    .mobile-drawer__link.active { color: var(--gold-pale); background: rgba(200,162,74,0.05); }
    .mobile-drawer__link.active { border-left: 2px solid var(--gold); }

    .mobile-drawer__toggle svg {
      transition: transform 0.25s;
      flex-shrink: 0;
      opacity: 0.6;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
    }
    .mobile-drawer__toggle.expanded svg { transform: rotate(180deg); }

    .mobile-drawer__sub {
      display: none;
      background: rgba(0,0,0,0.2);
      border-bottom: 1px solid rgba(200,162,74,0.07);
    }
    .mobile-drawer__sub.open { display: block; }
    .mobile-drawer__sublink {
      display: block;
      padding: 11px 24px 11px 40px;
      font-family: 'Cinzel', serif;
      font-size: 0.68rem;
      letter-spacing: 2px;
      color: var(--gray);
      text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
    }
    .mobile-drawer__sublink:hover { color: var(--gold); padding-left: 48px; }

    .mobile-drawer__footer {
      padding: 24px;
      border-top: 1px solid rgba(200,162,74,0.15);
      flex-shrink: 0;
    }
    .mobile-drawer__social-title {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 3px;
      color: var(--gold-dk);
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .mobile-drawer__social {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .mobile-drawer__social-btn {
      width: 42px; height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      border: 1px solid rgba(200,162,74,0.3);
      background: rgba(8,18,37,0.85);
      color: var(--gray);
      transition: all 0.3s;
    }
    .mobile-drawer__social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(200,162,74,0.1);
    }

    /* ── RESPONSIVE OVERRIDES ── */
    @media (max-width: 1024px) {
      .navbar__nav { display: none !important; }
      .lang-dropdown { display: none; }
      .btn-account { display: none; }
      .btn-mobile-baixar { display: inline-flex; }
      .hamburger { display: flex; }
    }

    /* ── BOTÃO MINHA CONTA ORNAMENTAL ── */
    .btn-account {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 180px;
      height: 52px;
      font-family: 'Cinzel', serif;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      color: #c4b896;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
      flex-shrink: 0;
      /* reset props do estilo antigo */
      padding: 0;
      border: none;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      white-space: nowrap;
    }
    .btn-account::before,
    .btn-account::after {
      content: '';
      position: absolute;
      inset: 0;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      transition: opacity 0.25s ease;
    }
    .btn-account::before {
      background-image: url('../image/btn-social-default.png');
      opacity: 1;
    }
    .btn-account::after {
      background-image: url('../image/btn-social-hover.png');
      opacity: 0;
    }
    .btn-account:hover::before { opacity: 0; }
    .btn-account:hover::after  { opacity: 1; }
    .btn-account:hover {
      color: #c4b896;
      transform: translateY(-2px);
      filter: drop-shadow(0 4px 14px rgba(200,162,74,0.35));
    }
    .btn-account span {
      position: relative;
      z-index: 2;
      pointer-events: none;
    }

    /* Mobile — mesmo botão menor */
    .btn-mobile-account {
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      width: 140px;
      height: 42px;
      font-family: 'Cinzel', serif;
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #c4b896;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.2s ease, filter 0.2s ease;
      flex-shrink: 0;
      /* reset */
      padding: 0;
      border: none;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .btn-mobile-account::before,
    .btn-mobile-account::after {
      content: '';
      position: absolute;
      inset: 0;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      transition: opacity 0.25s ease;
    }
    .btn-mobile-account::before {
      background-image: url('../image/btn-social-default.png');
      opacity: 1;
    }
    .btn-mobile-account::after {
      background-image: url('../image/btn-social-hover.png');
      opacity: 0;
    }
    .btn-mobile-account:hover::before { opacity: 0; }
    .btn-mobile-account:hover::after  { opacity: 1; }
    .btn-mobile-account:hover {
      transform: translateY(-2px);
      filter: drop-shadow(0 4px 12px rgba(200,162,74,0.3));
    }
    .btn-mobile-account span {
      position: relative;
      z-index: 2;
      pointer-events: none;
    }
    @media (max-width: 1024px) {
      .btn-account { display: none !important; }
      .btn-mobile-account { display: inline-flex; }
      .btn-mobile-baixar { display: none !important; }
    }
    /* ── OVERRIDES: ocultar sidebar e lang-dropdown ── */
    .sidebar-left { display: none !important; }
    .lang-dropdown { display: none !important; }

    /* ── HERO BUTTON GROUP ── */
    .hero-btn-group {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    /* Botão Baixar Cliente — hover dourado fixo por padrão */
    .btn-baixar .btn-play__default {
      display: block;
      opacity: 1; /* imagem hover sempre visível */
    }
    .btn-baixar .btn-play__hover {
      opacity: 0;
    }
    /* No hover do btn-baixar: mantém a imagem dourada, adiciona apenas o glow */
    .btn-baixar:hover .btn-play__default { opacity: 1; }
    .btn-baixar:hover .btn-play__hover   { opacity: 0; }
    .btn-baixar:hover {
      transform: translateY(-3px) scale(1.02);
      filter: drop-shadow(0 4px 22px rgba(200,162,74,0.75)) drop-shadow(0 0 12px rgba(200,162,74,0.5));
    }
    /* Label do btn-baixar sempre no estado dourado — texto mais forte */
    .btn-baixar-label {
      color: #1a0e00 !important;
      text-shadow:
        0 1px 0 rgba(255,220,100,0.5),
        0 0 8px rgba(255,180,0,0.2) !important;
      font-weight: 900 !important;
      font-size: 1.05rem !important;
      letter-spacing: 4px !important;
      -webkit-font-smoothing: antialiased;
    }
    .btn-baixar:hover .btn-baixar-label {
      color: #1a0e00 !important;
      text-shadow:
        0 1px 0 rgba(255,220,100,0.5),
        0 0 8px rgba(255,180,0,0.2) !important;
    }

    /* Ocultar navbar nav via CSS também */
    .navbar__nav { display: none !important; }

    /* Com o nav oculto, empurra o bloco direito para a extremidade direita */
    .navbar__right { margin-left: auto !important; }

    /* ── MOBILE DRAWER — item dourado (Baixar Cliente) ── */
    .mobile-drawer__link--gold {
      color: var(--gold-pale) !important;
      border-left: 2px solid var(--gold);
      background: rgba(200,162,74,0.07);
    }
    .mobile-drawer__link--gold:hover {
      color: var(--gold) !important;
      background: rgba(200,162,74,0.12);
    }

    /* ── MOBILE OVERRIDES ── */
    @media (max-width: 768px) {
      /* Background mobile específico */
      .hero-bg__image {
        background-image: url('../image/bg-apextale-mobile.jpg') !important;
        background-position: center top !important;
      }

      /* Logo maior no mobile */
      .hero-logo-img {
        width: 320px !important;
        max-width: 88vw !important;
      }

      /* Fonte menor nos botões para caber no frame dourado */
      .btn-play-label {
        font-size: 0.7rem !important;
        letter-spacing: 2.5px !important;
      }
      .btn-baixar-label {
        font-size: 0.7rem !important;
        letter-spacing: 2.5px !important;
      }
    }

    @media (max-width: 480px) {
      .hero-logo-img {
        width: 280px !important;
        max-width: 85vw !important;
      }

      .btn-play-label {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
      }
      .btn-baixar-label {
        font-size: 0.65rem !important;
        letter-spacing: 2px !important;
      }
    }

    /* ── EM BREVE ── */
    .hero-em-breve {
      font-family: 'Cinzel', serif;
      font-size: clamp(0.9rem, 2vw, 1.35rem);
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      background: linear-gradient(135deg, #FFD97A 0%, #E8A820 35%, #FFD060 60%, #C8821A 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 8px rgba(200,130,30,0.4));
      margin-bottom: 6px;
    }
