/*
  ╔══════════════════════════════════════════════════╗
  ║      🎨🎨🎨 #VARIAVEIS → SISTEMA DE DESIGN        ║
  ╚══════════════════════════════════════════════════╝ */

    :root {
      
 /*  ◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘
          🎨  DESIGN COLORS
     ◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘ */
      
     --pink:        #EC4899;   /* rosa principal */
     --pink-dark:   #be185d;   /* rosa escuro (hover) */
     --pink-light:  #f472b6;   /* rosa claro */
     --pink-glow:   rgba(236, 72, 153, 0.22);
     --pink-glow2:  rgba(236, 72, 153, 0.08);
    --pink:         #FF2D8B;
    --pink-light:   #FF6BB8;
    --pink-glow:    rgba(255,45,139,0.30);
    --pink-glow-sm: rgba(255,45,139,0.12);
    --xv-red:       #E50914;
    --xv-red-glow:  rgba(229,9,20,0.25);
    --gold:         #F0C040;
    --gold-glow:    rgba(240,192,64,0.25);
    --green:        #00C853;
    --green-wpp:        #05a046;
    --wa-green:     #25D366;
    --of-blue:      #1A9FD4;
    --tg-blue:      #0088CC;
    --bg-btn-links: #1DA1F2;
    --btn-links-hover: #097ac0;
    --priv-orange:  #F07206;
    --hero-text: #ffffff;

  

  --header-h: 64px;
  --footer-h: 76px;
  --t:        0.25s cubic-bezier(0.4,0,0.2,1);

/* ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣
          ៚ TIPOGRAFIA ៚
   ≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣≣ */
    
      --display: 'Barlow Condensed', Impact, sans-serif;
      --sans:    'Inter', system-ui, sans-serif;

  /* =================================
       Velocidade/curvas de animação
    ================================== */
    
      --dur:   0.3s;
      --ease:  cubic-bezier(.65, 0, .35, 1);
      --eout:  cubic-bezier(.2,  1, .3,  1);

  /*  ===============================
               LAYOUT
   ================================= */   
    
      --nav-h: 68px;        /* altura fixa da navbar */
      --mx:    1200px;      /* largura máxima do conteúdo */
      /* clamp(min, preferido, max) — padding horizontal responsivo */
      --px: clamp(1rem, 5vw, 2.5rem);
      
      /* Tons para alinhar hero com vídeo */
      --video-bg: #1a1a1a;  /* fundo escuro natural para vídeo */
    }

   /*  ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ 
        
         🅓🅐🅡🅚 🅣🅗🅔🅜🅔 (padrão)     
       ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ */

    [data-theme="dark"] {
      --bg:       #000;
      --bg-mid:   #302e2e;
      --bg-light-gray:   #5e5a5e;
      --bg-max-gray:   #cfcac7;

      --bg-card:  #161616;
      --bg-raised:#1e1e1e;
      --border:   rgba(236, 72, 153, 0.12);
      --border-hi:rgba(236, 72, 153, 0.28);
      --txt:      #eceaea;
      --txt-mid:  rgba(255,255,255,0.72);
      --txt-dim:  rgba(255,255,255,0.40);
      --txt-inv:  #ffffff;
      /* Botão outline no hero */
      --btn-outline-color: rgba(255,255,255,0.85);
      --btn-outline-border: rgba(239, 15, 15, 0.3);
      --btn-outline-hover-bg: rgba(255,255,255,0.08);
    }

 /*    ➜➜ 🅛🅘🅖🅗🅣 🅣🅗🅔🅜🅔 
              #TEMA CLARO 
   ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ */

    [data-theme="light"] {
      --bg:       #fafafa;
      --bg-mid:   #ffffff;
      --bg-card:  #f4f4f4;
      --bg-raised:#ffffff;
      --border:   rgba(236, 72, 153, 0.15);
      --border-hi:rgba(236, 72, 153, 0.35);
      --txt:      #0f0f0f;
      --txt-mid:  rgba(15,15,15,0.72);
      --txt-dim:  rgba(15,15,15,0.45);
      --txt-inv:  #ffffff;
      --btn-outline-color: #0f0f0f;
      --btn-outline-border: rgb(236, 11, 11);
      --btn-outline-hover-bg: rgba(0,0,0,0.06);
    }

    /* ═══════════════════════════════════════════════════════
                         🅡🅔🅢🅔🅣 🅒🅢🅢
      ═══════════════════════════════════════════════════════ */

    *, *::before, *::after {
      margin: 0; padding: 0;
      box-sizing: border-box; /* padding e border entram no tamanho total */
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--txt);
      line-height: 1.6;
      overflow-x: hidden; /* nunca aparece scroll horizontal */
      transition: background var(--dur), color var(--dur);
    }

    /* Efeito grain (grão) sutil de fundo — decora sem atrapalhar */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9990;
    }

    /* Melhora o scroll em dispositivos iOS */
html {
    scroll-behavior: smooth;
}

    /* Remoções padrão */
    ul { list-style: none; }
    a  { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ── Classe utilitária: centraliza e limita largura ── */
    .container {
      width: 100%;
      max-width: var(--mx);
      margin-inline: auto;
      padding-inline: var(--px);
    }

    /* ── Skip link: acessibilidade por teclado ─── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--pink);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 0 0 8px 8px;
      font-weight: 700;
      z-index: 9999;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

    /* ═══════════════════════════════════════════════════════
       #NAV — BARRA DE NAVEGAÇÃO FIXA NO TOPO
    ═══════════════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      inset-inline: 0;
      height: var(--nav-h);
      z-index: 1000;
      background: var(--bg);
      /* Linha rosa na borda inferior */
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      transition: box-shadow var(--dur), background var(--dur);
    }

    /* Sombra aparece após rolar (classe .scrolled adicionada via JS) */
    .nav.scrolled {
      box-shadow: 0 4px 40px rgba(0,0,0,.5);
    }

    /* Layout interno: logo | links | controles */
    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-inline: var(--px);
      max-width: var(--mx);
      margin-inline: auto;
    }

    /* ── LOGO ────────────────────────────────────────────── */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-shrink: 0;
    }

    /* Foto circular */
    .nav-logo-photo {
      position: relative;
      width: 42px;
      height: 42px;
      flex-shrink: 0;
    }
    .nav-logo-photo img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--pink);
    }
    /* Anel rosa pulsante ao redor da foto */
    .nav-logo-photo::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid var(--pink-glow);
      animation: ringPulse 2.5s ease-in-out infinite;
    }
    @keyframes ringPulse {
      0%, 100% { opacity: 0.4; transform: scale(1);    }
      50%       { opacity: 1;   transform: scale(1.06); }
    }

     /* ==============================================
           SELO DE VERIFICADO (ícone azul ✓)
           Posicionado no canto inferior direito da foto
           ================================================
        */
        .verified-badge {
            position: relative;
            bottom: 11px;
            right: -35px;
            width: 14px;
            height: 14px;
            background: #1DA1F2;  /* Azul do Twitter/verificado */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--bg-secondary);  /* Borda para destacar */
        }

        .verified-badge i {
            color: white;
            font-size: 0.5rem;
        }

    /* Textos ao lado da foto */
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      
    }
    .nav-logo-name {
      font-family: var(--display);
      font-size: clamp(1.1rem, 2.5vw, 1.1rem);
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    /* "VANESSA" branco, "RAFAELLA" rosa */
    .nav-logo-name .accent { color: var(--pink); }

    .nav-logo-sub {
      font-size: 0.55rem;
      font-weight: 400;
      letter-spacing: .17em;
      text-transform: uppercase;
      color: var(--txt-dim);
      margin-right: 1rem;
      line-height: 1rem;
    }

    /* ── LINKS DESKTOP (escondidos no mobile) ─────────── */
    .nav-links {
      display: none; /* mobile-first: oculto */
      align-items: center;
      gap: 1.6rem;
    }
    .nav-links a {
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: .04em;
      color: var(--txt-mid);
      position: relative;
      transition: color var(--dur);
    }
    /* Linha animada no hover */
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--pink);
      transition: width var(--dur) var(--eout);
    }
    .nav-links a:hover { color: var(--pink); }
    .nav-links a:hover::after,
    .nav-links a[aria-current="page"]::after { width: 100%; }

    /* ── CONTROLES DA NAV ────────────────────────────── */
    .nav-controls {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Botão ícone (tema) */
    .icon-btn {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--border);
      color: var(--txt-mid);
      font-size: 0.85rem;
      transition: all var(--dur);
    }
    .icon-btn:hover { border-color: var(--pink); color: var(--pink); }

    /* Seletor de idioma */
    .lang-sel { position: relative; }

    /* .lang-btn = classe no HTML · .lang-trigger = alias CSS */
    .lang-btn,
    .lang-trigger {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 10px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--txt-mid);
      font-size: 0.78rem; font-weight: 600;
      transition: all var(--dur);
    }
    .lang-btn:hover,
    .lang-trigger:hover { border-color: var(--pink); color: var(--pink); }
    .lang-btn:focus-visible,
    .lang-trigger:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

    .lang-flag { font-size: 1rem; line-height: 1; }
    .lang-code { text-transform: uppercase; letter-spacing: .04em; }

    .lang-arrow svg {
      width: 11px; height: 11px;
      stroke: currentColor;
      transition: transform var(--dur);
    }
    .lang-sel.open .lang-arrow svg { transform: rotate(180deg); }

    /* .lang-drop = id/classe usada no HTML */
    .lang-drop {
      position: absolute;
      top: calc(100% + 8px); right: 0;
      min-width: 170px;
      background: var(--bg-raised);
      border: 1px solid var(--border-hi);
      border-radius: 10px;
      padding: 6px;
      box-shadow: 0 12px 40px rgba(0,0,0,.4);
      opacity: 0; visibility: hidden;
      transform: translateY(-6px);
      transition: opacity var(--dur), visibility var(--dur), transform var(--dur) var(--eout);
      z-index: 200;
    }
    .lang-drop p {
      font-size: 0.68rem; color: var(--txt-dim);
      padding: 4px 10px 8px;
      text-transform: uppercase; letter-spacing: .06em;
      border-bottom: 1px solid var(--border); margin-bottom: 4px;
    }
    .lang-sel.open .lang-drop {
      opacity: 1; visibility: visible; transform: translateY(0);
    }

    .lang-opt {
      display: flex; align-items: center; gap: 8px;
      width: 100%; padding: 8px 10px;
      border-radius: 6px;
      font-size: 0.82rem; font-weight: 500;
      color: var(--txt-mid);
      transition: background var(--dur), color var(--dur);
    }
    .lang-opt:hover { background: var(--pink-glow2); color: var(--pink); }
    .lang-opt[aria-selected="true"] {
      color: var(--pink); background: var(--pink-glow2); font-weight: 700;
    }

    /* Botão MENU rosa (desktop) */
    .btn-menu-desktop {
      display: none; /* aparece em ≥ 768px */
      align-items: center; gap: 6px;
      padding: 8px 18px; height: 36px;
      background: var(--pink);
      border-radius: 4px;
      color: #fff;
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      transition: background var(--dur), transform var(--dur);
    }
    .btn-menu-desktop:hover { background: var(--pink-dark); transform: translateY(-1px); }

    /* Hamburguer (mobile) */
    .hamburger {
      width: 36px; height: 36px;
      display: flex; flex-direction: column;
      justify-content: center; gap: 5px;
      border-radius: 8px;
      border: 1px solid var(--border);
      padding: 0 8px;
      transition: border-color var(--dur);
    }
    .hamburger:hover { border-color: var(--pink); }
    .hamburger span {
      display: block; width: 100%; height: 2px;
      background: var(--txt-mid);
      border-radius: 2px;
      transition: transform var(--dur), opacity var(--dur), background var(--dur);
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--pink); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--pink); }

    /* ═══════════════════════════════════════════════════════
       #MENU-MOBILE — Painel deslizante lateral
    ═══════════════════════════════════════════════════════ */

    /* Overlay escurecido atrás do painel */
    .mob-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.7);
      z-index: 1400;
      opacity: 0; visibility: hidden;
      transition: opacity var(--dur), visibility var(--dur);
      backdrop-filter: blur(4px);
    }
    .mob-overlay.active { opacity: 1; visibility: visible; }

    /* Painel lateral (entra pela direita) */
    .mob-menu {
      position: fixed;
      top: 0; right: -100%;
      width: min(85vw, 320px);
      height: 100vh; height: 100dvh;
      background: var(--bg-mid);
      /* Borda rosa à esquerda */
      border-left: 1px solid var(--border-hi);
      z-index: 1500;
      display: flex; flex-direction: column;
      overflow-y: auto;
      transition: right .4s var(--eout);
    }
    .mob-menu.active { right: 0; }

    .mob-menu-hdr {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.25rem;
      border-bottom: 1px solid var(--border);
    }
    .mob-menu-brand {
      font-family: var(--display);
      font-size: 1.1rem; font-weight: 800;
      letter-spacing: .06em; text-transform: uppercase;
    }
    .mob-menu-brand .accent { color: var(--pink); }

    .mob-close {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 8px;
      border: 1px solid var(--border);
      color: var(--txt-mid); font-size: 1rem;
      transition: all var(--dur);
    }
    .mob-close:hover { border-color: var(--pink); color: var(--pink); }

    /* Links do menu mobile */
    .mob-nav { padding: 0.5rem 0; }

    /* Links diretos (sem <li>) — estilo HOME3 */
    .mob-nav a {
      display: flex; align-items: center; gap: 0.85rem;
      padding: 0.7rem 1.5rem;
      font-size: 0.9rem; font-weight: 500;
      color: var(--txt-mid);
      border-left: 2px solid transparent;
      transition: color var(--dur), padding-left var(--dur),
                  background var(--dur), border-color var(--dur);
    }
    .mob-nav a i {
      width: 18px; text-align: center;
      font-size: 0.88rem; color: var(--txt-dim);
      transition: color var(--dur);
    }
    .mob-nav a:hover {
      color: var(--pink);
      background: var(--pink-glow2);
      border-left-color: var(--pink);
      padding-left: 1.75rem;
    }
    .mob-nav a:hover i { color: var(--pink); }

    /* Divisor horizontal dentro do mob-nav */
    .mob-divider {
      height: 1px;
      background: var(--border);
      margin: 0.3rem 1.25rem;
    }

    /* Label de seção (ex: "Plataformas") */
    .mob-label {
      font-size: 0.58rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      color: var(--txt-dim);
      padding: 0.65rem 1.5rem 0.2rem;
    }

    /* ── GRID DE PLATAFORMAS no menu mobile ────────────── */
    .mob-plats {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0.4rem;
      padding: 0.75rem 1rem;
      border-top: 1px solid var(--border);
    }

    .mob-plat {
      display: flex; flex-direction: column;
      align-items: center; gap: 3px;
      padding: 6px 2px;
      border-radius: 10px;
      border: 1px solid var(--border);
      font-size: 0.5rem; font-weight: 700;
      letter-spacing: .02em; text-transform: uppercase;
      color: var(--txt-dim); text-decoration: none;
      transition: all 0.2s;
      -webkit-tap-highlight-color: transparent;
    }
    .mob-plat:hover {
      border-color: var(--pink);
      background: var(--pink-glow2);
      color: var(--pink);
    }

    .mob-plat-icon {
      width: 32px; height: 32px;
      border-radius: 8px; overflow: hidden;
      background: var(--bg-card);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .mob-plat-icon img {
      width: 100%; height: 100%;
      object-fit: cover; border-radius: 7px;
    }

    /* Rodapé do menu mobile */
    .mob-menu-footer {
      padding: 1.25rem;
      display: flex; flex-direction: column; gap: 0.75rem;
      border-top: 1px solid var(--border);
    }

    /* Botão de tema no mobile */
    .mob-theme-btn {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1rem;
      background: var(--bg-card);
      border-radius: 10px;
      border: 1px solid var(--border);
      color: var(--txt-mid);
      font-size: 0.88rem; width: 100%;
      transition: all var(--dur);
    }
    .mob-theme-btn:hover { border-color: var(--pink); color: var(--pink); }

    /* Ícones sociais no mobile */
    .mob-socials {
      display: flex; gap: 0.6rem; flex-wrap: wrap;
    }
    .mob-soc-btn {
      flex: 1; min-width: 48px;
      display: flex; align-items: center; justify-content: center;
      height: 40px;
      border-radius: 8px;
      border: 1px solid var(--border);
      font-size: 1rem;
      color: var(--txt-dim);
      transition: all var(--dur);
    }
    .mob-soc-btn:hover { color: var(--pink); border-color: var(--pink); }

    
/*  ◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘
           CURSOR PINK
    ◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘ */

    
    @media (pointer: fine) {
      /* Só esconde cursor padrão em dispositivos com mouse */
      body { cursor: none; }
    }

    #cursor-dot {
      position: fixed;
      width: 8px; height: 8px;
      background: #EC4899;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 8px #EC4899, 0 0 20px rgba(236,72,153,.6);
      transition: width .1s, height .1s;
      /* Escondido por padrão, aparece ao mover o mouse */
      opacity: 0;
    }
    #cursor-ring {
      position: fixed;
      width: 32px; height: 32px;
      border: 1.5px solid rgba(236,72,153,.5);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      /* transition lenta = anel "arrasta" atrás */
      transition: left .12s ease-out, top .12s ease-out,
                  width .2s, height .2s, border-color .2s;
      opacity: 0;
    }
    /* Aparece após o primeiro movimento do mouse */
    #cursor-dot.visible,
    #cursor-ring.visible { opacity: 1; }

    /* Expande o anel quando sobre links/botões */
    body.cursor-hover #cursor-ring {
      width: 48px; height: 48px;
      border-color: rgba(236,72,153,.9);
    }

  /* ◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘
           HERO SECTION 
    ◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘◘ 
    ═══════════════════════════════════════════════════════
       #HERO — SEÇÃO PRINCIPAL
       Mobile-first: coluna única | ≥ 768px → duas colunas
    ═══════════════════════════════════════════════════════ */
    /* =============================================
   HERO SECTION – atualizado para seguir o tema
============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 3rem;
  padding-inline: var(--px);
  overflow: hidden;
  background: var(--bg);
  color: var(--txt);
}

/* Garante que TODO texto dentro da hero siga o tema */
.hero,
.hero * {
  color: var(--txt) !important;
}

/* Gradiente do "EXCLUSIVO" – fica bonito nos dois temas */
.hero-title .pink {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent !important;
}

/* Fundo suave no tema light */
[data-theme="light"] .hero {
  background: linear-gradient(to bottom, #fff5f8, var(--bg));
}
[data-theme="light"] .hero::before {
  background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
}

/* Grid Layout: mobile = flex coluna | ≥768px = duas colunas */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Coluna de texto */
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  order: 1;            /* mobile: 1º */
}

/* Coluna de vídeo */
.hero-video-col {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;            /* mobile: 2º */
}

/* Subtítulo + Botões — wrapper unificado */
.hero-bottom {
  order: 3;            /* mobile: 3º — após o vídeo */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

    /* Tag pequena acima do título */
    .hero-eyebrow {
      display: inline-block;
      font-size: 0.4rem;
      font-weight: 600;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--pink);
      padding: 5px 14px;
      border: 1px solid var(--border-hi);
      border-radius: 50px;
      margin-bottom: 1.5rem;
      background: var(--pink-glow2);
      
    }

    /*
   ====================================
       Título hero em display bold 
   ===================================*/
.hero-title {
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--hero-text);
  margin-bottom: 0.4rem;
  text-align: center; /* mobile: centralizado */
}

    /* ============================
    "EXCLUSIVO" em rosa/gradiente
    ================================= */
    .hero-title .pink {
      color: var(--pink);
      /* gradiente rosa→pink para visual mais rico */
      background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

/* ── SUB-TÍTULO ── */
.hero-sub {
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  color: var(--txt-dim);
  margin: 1.2rem 0 2rem;
  max-width: 420px;
  text-align: center; /* mobile: centralizado */
  line-height: 1.7;
}

/* ── VIDEO HERO ── */
.hero-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-width: 260px;         /* menor por padrão (mobile) */
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  animation: fadeInScale 0.8s var(--eout);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════════════════
   MEDIA QUERIES — RESPONSIVE DESIGN
   ════════════════════════════════════════ */

/* ── MOBILE (≤ 479px) ─────────────────── */
@media (max-width: 479px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 4rem;
    text-align: center;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-text-col {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 0.32rem;
    padding: 4px 10px;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 0.88rem;
    margin: 0.8rem 0 1.5rem;
    text-align: center;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-video-container {
    max-width: 200px;
    border-radius: 14px;
  }
}

/* ── MOBILE-MÉDIO (480px – 767px) ─────── */
@media (min-width: 480px) and (max-width: 767px) {
  .hero {
    text-align: center;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 3rem);
    text-align: center;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-video-container {
    max-width: 240px;
  }
}

/* ── TABLET (768px – 1023px) ─────────── */
@media (min-width: 768px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 3rem;
    align-items: start;
    padding-inline: clamp(1rem, 4vw, 3rem);
  }

  /* Texto: col 1, row 1 */
  .hero-text-col {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-start;
    text-align: left;
    order: unset;
    padding-left: 1rem;
  }

  /* Vídeo: col 2, ambas as rows */
  .hero-video-col {
    grid-column: 2;
    grid-row: 1 / 3;
    justify-content: flex-end;
    order: unset;
    align-self: center;
  }

  /* Botões + sub: col 1, row 2 */
  .hero-bottom {
    grid-column: 1;
    grid-row: 2;
    order: unset;
    max-width: none;
    align-items: flex-start;
    text-align: left;
    padding-left: 1rem;
    padding-top: 0.5rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: left;
  }

  .hero-sub {
    text-align: left;
  }

  .hero-video-container {
    max-width: 300px;
  }
}

/* ── DESKTOP (1024px+) ───────────────── */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 380px;
    gap: 0.5rem 4rem;
    padding-inline: clamp(1.5rem, 5vw, 4rem);
  }

  .hero-title {
    font-size: clamp(3rem, 5.5vw, 4.4rem);
  }

  .hero-video-container {
    max-width: 340px;
  }
}

/* ── DESKTOP-GRANDE (1280px+) ─────────── */
@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
  }

  .hero-video-container {
    max-width: 380px;
  }
}

    /* ──────────────────────────────────────────────────────── */

/* Botões CTA do hero */
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center; /* mobile: centralizado */
  margin-bottom: 0;
}

    /* Botão rosa sólido */
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 24px;
      background: var(--pink);
      border-radius: 4px;
      color: #fff;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
      white-space: nowrap;
      border: 2px solid transparent;
    }
    .btn-primary:hover {
    
      transform: translateY(-2px);
      box-shadow: 0 10px 30px var(--pink-glow);
      border: 2px solid var(--txt);
    }
    .btn-primary:active {
       transform: translateY(0);
       }

    .btn-primary:focus-visible {
      outline: 2px solid var(--pink);
      outline-offset: 3px;
      box-shadow: 0 0 0 4px var(--pink-glow);
    }

    /* ── BTN OUTLINE / LINKS OFICIAIS ─────────────────── */
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 24px;
      background: var(--of-blue);
      border: 1px solid transparent;
      border-radius: 4px;
      color: #fff;
      font-size: 0.8rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase;
      transition: all var(--dur);
      white-space: nowrap;
    }
    .btn-outline:hover {
      
      border-color: var(--btn-links-hover);
      color: #fff;
      border: 2px solid var(--txt);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(29,161,242,.35);
    }
    .btn-outline:focus-visible {
      outline: 2px solid var(--of-blue);
      outline-offset: 3px;
    }


    /* 
    =======================================
    Indicador de scroll "ROLE PARA BAIXO"
    ======================================= */
    .scroll-hint {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--txt-dim);
      animation: bounce 2s ease-in-out infinite;
    }

    .scroll-hint::after {
      content: '';
      display: block;
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--pink), transparent);
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }

    /* 
    ========================================
         Emojis decorativos flutuantes
    ======================================== */
   .hero-emoji {
  position: absolute;
  width: clamp(2rem, 4vw, 3.5rem);  /* ← controla o tamanho da imagem */
  height: auto;
  font-size: clamp(1rem, 3vw, 2.8rem);
  pointer-events: none;
  animation: floatEl 4s ease-in-out infinite;
  z-index: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
    .hero-emoji.e1 { top: 90%; left:  10%; animation-delay: 0s; width: 1.5rem; }
    .hero-emoji.e2 { top: 90%; left: 10%; animation-delay: 1s; width: 2rem; }
    .hero-emoji.e3 { top: 18%; right: 9%; animation-delay: 0.5s; width: 2rem;}
    .hero-emoji.e4 { top: 60%; left: 10%; animation-delay: 1.5s; width: 2rem; }
    .hero-emoji.e5 { top: 98%; right: 90%; animation-delay: 1.5s; width: 2rem; }
    .hero-emoji.e6 { top: 40%; left: 8%; animation-delay: 1.5s; width: 3rem;}
   
    /* seta rosa no centro */
    .hero-emoji.e7 { top: 93%; right: 46%; animation-delay: 1.5s; width: 2rem;}


    @keyframes floatEl {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50%       { transform: translateY(-14px) rotate(3deg); }
    }

/* ═══════════════════════════════════════════════════
   SISTEMA DE SECTIONS — reutilizável em todas as seções
   ═══════════════════════════════════════════════════ */

/* Espaçamento vertical da section — responsivo */
.section-wrap {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

/* Cabeçalho centralizado */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  max-width: 680px;      /* limita a largura do texto */
  margin-inline: auto;
}

/* Badge / tag acima do título */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
  padding: 5px 14px;
  border: 1px solid var(--border-hi);
  border-radius: 50px;
  background: var(--pink-glow2);
  margin-bottom: 1rem;
}

/* Título grande */
.section-title {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--txt);
}
.section-title .accent { color: var(--pink); }

/* Subtítulo abaixo do título */
.section-sub {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--txt-dim);
  line-height: 1.7;
}

/* Alterna fundo entre sections para criar ritmo */
.section-alt {
  background: var(--bg-mid);
}

/* ═══════════════════════════════════════
   ABOUT — SOBRE MIM  (foto primeiro)
═══════════════════════════════════════ */
#about {
  background: var(--bg-mid);
  padding: 0;                /* sem padding no topo — a foto vai até a borda */
}

/* Wrapper geral da section */
.about-wrap {
  display: flex;
  flex-direction: column;
}

/* ── Foto hero: largura total, sem corte ── */
.about-photo-hero {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.about-photo-img {
  width: 100%;
  height: auto;        /* altura natural da imagem, sem corte */
  display: block;
  transition: filter 0.4s ease;
}

/* Hover: glow neon rosa em volta da silhueta */
.about-photo-hero:hover .about-photo-img {
  filter:
    drop-shadow(0 0 8px  #FF2D8B)
    drop-shadow(0 0 24px rgba(255, 45, 139, 0.60))
    drop-shadow(0 0 55px rgba(255, 45, 139, 0.25));
}

/* ── Conteúdo abaixo da foto ── */
.about-content {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

/* Texto descritivo */
.about-text {
  max-width: 600px;
  margin-inline: auto;
}

.about-text p {
  font-size: clamp(.9rem, 2vw, 1rem);
  color: var(--txt-mid);
  line-height: 1.8;
}

/* Desktop: junta foto e texto lado a lado */
@media (min-width: 768px) {
  .about-photo-hero {
    max-height: 60svh;
  }

  .about-content {
    text-align: left;
  }

  .about-text {
    margin-inline: 0;
  }
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .stats-row { justify-content: flex-start; }
}

.stat        { text-align: center; }
.stat-n      { font-family: var(--display); font-size: 2.2rem; font-weight: 900; color: var(--pink); line-height: 1; }
.stat-n:hover { color: var(--wa-green); text-shadow: #23c75f 0 0 2px; }
.stat-l      { font-size: 0.68rem; color: var(--txt-dim); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }
.stat-l:hover { color: var(--txt);}


/* ═══════════════════════════════════════
   ACESSO RÁPIDO
═══════════════════════════════════════ */
#acesso-rapido { background: var(--bg); }

.qa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px) { .qa-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .qa-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); } }

.qa-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 1.4rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center; text-decoration: none;
  color: var(--txt);
  transition: border-color var(--dur), transform var(--dur), background var(--dur);
  -webkit-tap-highlight-color: transparent;
}

.qa-card:hover {
  color: var(--hero-text);
}

.qa-card:active { transform: translateY(0); }

/* ── cores individuais ── */
.qa-card--pink   { border-color: rgba(255,45,139,.35);  background: rgba(255,45,139,.06); }
.qa-card--green  { border-color: rgba(37,211,102,.35);  background: rgba(37,211,102,.06); }
.qa-card--blue   { border-color: rgba(29,161,242,.35);  background: rgba(29,161,242,.06); }
.qa-card--teal   { border-color: rgba(0,136,204,.35);   background: rgba(0,136,204,.06);  }
.qa-card--orange { border-color: rgba(240,114,6,.35);   background: rgba(240,114,6,.12);  }
.qa-card--purple { border-color: rgba(139,92,246,.35);  background: rgba(139,92,246,.06); }

.qa-card--pink:hover   { background: rgba(255,45,139,.12); transform: translateY(-3px); }
.qa-card--green:hover  { background: var(--green-wpp); transform: translateY(-3px); }
.qa-card--blue:hover   { background: var(--of-blue); transform: translateY(-3px); }
.qa-card--teal:hover   { background: var(--btn-links-hover);  transform: translateY(-3px); }
.qa-card--orange:hover { background: var(--priv-orange); color: var(--hero-text); transform: translateY(-3px); }
.qa-card--purple:hover { background: rgba(139,92,246,.12); transform: translateY(-3px); }

.qa-icon  { font-size: 22px; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; }
.qa-label { font-size: 1rem; font-weight: 600; color: var(--txt); line-height: 1.3; }
.qa-sub   { font-size: 0.7rem; color: var(--hero-text); margin-top: 2px; font-weight: bold;}

/* ====================== CARROSSEL ONLYFANS - VERSÃO MOBILE FRIENDLY ====================== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 380px;           /* Mobile primeiro */
  overflow: hidden;
  margin: 2rem 0 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}

.carousel-track {
  display: flex;
  gap: 15px;
  height: 100%;
  animation: carousel-slide 10s linear infinite;
  will-change: transform;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track img {
  height: 100%;
  width: auto;                    /* Mantém proporção original */
  max-width: none;
  object-fit: cover;              /* corta só o necessário */
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Animação infinita */
@keyframes carousel-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====================== MELHORIA PARA MOBILE ====================== */
@media (max-width: 768px) {
  .carousel-wrapper {
    height: 320px;           /* um pouco menor no celular */
    border-radius: 12px;
  }
  
  .carousel-track img {
    object-position: center;   /* centraliza o rosto/corpo */
  }
}

/* No desktop podemos deixar mais alto */
@media (min-width: 1024px) {
  .carousel-wrapper {
    height: 480px;
  }
}
