/* ==== VARIÁVEIS DE TEMA (DARK MODE LUXURY) ==== */
:root {
    --bg-base: #020617; /* slate-950 */
    --bg-glass: rgba(15, 23, 42, 0.4); /* mais translúcido */
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-hover: rgba(255, 255, 255, 0.15);
    --text-main: #f8fafc; /* slate-50 */
    --text-muted: #94a3b8; /* slate-400 */
    --brand-primary: #eab308; /* yellow-500 */
    --brand-secondary: #ca8a04; /* yellow-600 */
    --glow-opacity: 0.15;
}

/* PANDA DELAY */
.panda-delay-hide {
    display: none !important;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(234, 179, 8, var(--glow-opacity)), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, var(--glow-opacity)), transparent 25%);
    background-attachment: fixed;
}

/* OVERLAY DE RUÍDO (NOISE) */
.bg-noise {
    display: none;
}

/* ==== GLASSMORPHISM UTILS PREMIUM ==== */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border-color: var(--border-glass-hover);
}

/* ==== BORDAS COM GLOW (CANVAS VISUAL VIBE) ==== */
.glow-border {
    position: relative;
    border: 1px solid rgba(234, 179, 8, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.8), rgba(245, 158, 11, 0.2), rgba(234, 179, 8, 0.8));
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glow-border:hover {
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
}

.glow-border:hover::before {
    opacity: 1;
}

/* ==== TEXT GRADIENTS ==== */
.text-gradient {
    background: linear-gradient(135deg, #fef08a 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==== EFEITOS DE HOVER 3D (HOVER-FLOAT) ==== */
.hover-float {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.hover-float:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(234, 179, 8, 0.15);
}

/* ==== BOTÕES PREMIUM (SWEEPING LIGHT) ==== */
.button-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

.button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-premium:hover::before {
    left: 200%;
}

.button-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(234, 179, 8, 0.5);
}

/* ==== BLOBS DE LUZ (AURAS) ==== */
.glow-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    opacity: 0.6;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-blob 10s infinite alternate ease-in-out;
    will-change: transform, opacity;
}

@keyframes pulse-blob {
    0% { transform: scale(1) translate(0, 0); opacity: 0.5; }
    50% { transform: scale(1.1) translate(2%, 2%); opacity: 0.7; }
    100% { transform: scale(0.9) translate(-2%, -2%); opacity: 0.5; }
}

/* GSAP CLASSES INICIAIS */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
}
/* ==== CAROUSEL 3D ==== */
.carousel-wrapper { position: relative; width: 100%; height: 380px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 992px) { .carousel-wrapper { height: 500px; } }
.carousel-3d-viewport { position: relative; width: 280px; height: 180px; perspective: 1200px; transform-style: preserve-3d; }
@media (min-width: 992px) { .carousel-3d-viewport { width: 480px; height: 290px; } }
.card-3d { position: absolute; inset: 0; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8); border: 1px solid rgba(255, 255, 255, 0.1); transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s, filter 0.8s, border-color 0.8s; user-select: none; }
.card-3d img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform 0.8s; }
.card-3d::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.65); transition: opacity 0.8s; z-index: 1; pointer-events: none; }
.card-3d.active { transform: rotateY(0deg) translateZ(100px) scale(1.1); opacity: 1; z-index: 10; border-color: rgba(255, 255, 255, 0.3); }
.card-3d.active::after { opacity: 0; }
.card-3d.left { transform: rotateY(26deg) translateZ(-60px) translateX(-220px) scale(0.95); opacity: 0.6; z-index: 5; }
.card-3d.right { transform: rotateY(-26deg) translateZ(-60px) translateX(220px) scale(0.95); opacity: 0.6; z-index: 5; }
.card-3d.far-left { transform: rotateY(40deg) translateZ(-160px) translateX(-380px) scale(0.85); opacity: 0.15; z-index: 2; }
.card-3d.far-right { transform: rotateY(-40deg) translateZ(-160px) translateX(380px) scale(0.85); opacity: 0.15; z-index: 2; }
.btn-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.05); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 15; transition: background 0.3s, border-color 0.3s, transform 0.2s; }
.btn-arrow:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; }
.btn-arrow:active { transform: translateY(-50%) scale(0.92); }
.btn-arrow.prev { left: 15px; }
.btn-arrow.next { right: 15px; }
@media (min-width: 992px) { .btn-arrow.prev { left: 50px; } .btn-arrow.next { right: 50px; } }
.btn-arrow svg { width: 24px; height: 24px; fill: currentColor; }
.thumbnails-nav { display: flex; justify-content: center; gap: 16px; padding: 30px 20px; z-index: 10; }
.thumb-item { position: relative; width: 48px; height: 48px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transition: opacity 0.3s; }
.thumb-item:hover img { opacity: 0.8; }
.thumb-item.active { border-color: #fff; transform: translateY(-4px); box-shadow: 0 0 24px var(--active-accent, #00e676); }
.thumb-item.active img { opacity: 1; }
.thumb-progress { position: absolute; bottom: 0; left: 0; height: 3px; width: 100%; background: rgba(0, 0, 0, 0.4); }
.thumb-progress-fill { height: 100%; width: 0%; background: var(--active-accent, #00e676); transition: width 0.1s linear; }

/* MISSING LAYOUT CLASSES */
    /* Layout da Hero */
    .hero-layout {
      flex: 1;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 40px;
      z-index: 5;
    }

    @media (min-width: 992px) {
      .hero-layout {
        display: grid;
        grid-template-columns: 1fr 1.6fr;
        align-items: center;
      }
    }

    /* Lado Esquerdo: Conteúdo */
    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      text-align: center;
    }

    @media (min-width: 992px) {
      .hero-content {
        text-align: left;
        padding-right: 40px;
      }
    }

    .meta-tag {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    @media (min-width: 992px) {
      .meta-tag {
        justify-content: flex-start;
      }
    }

    .hot-label {
      font-family: 'Outfit', sans-serif;
      font-weight: 900;
      color: #ff3d00;
      font-size: 18px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .category-pill {
      font-family: 'Space Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 5px 12px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .display-title {
      font-family: 'Outfit', sans-serif;
      font-size: 56px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.85;
      letter-spacing: -0.03em;
      min-height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    @media (min-width: 992px) {
      .display-title {
        font-size: 100px;
        justify-content: flex-start;
      }
    }

    .description {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      max-width: 440px;
      margin: 0 auto;
      min-height: 70px;
    }

    @media (min-width: 992px) {
      .description {
        margin: 0;
      }
    }



/* ==== BOTOES PREMIUM LUCRO 45 ==== */
.btn-lucro-premium {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 1px 0 0 rgba(255,255,255,0.3) inset,
        0 0 0 2px rgba(16, 185, 129, 0.1),
        0 15px 30px -5px rgba(5, 150, 105, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(0);
}

.btn-lucro-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.btn-lucro-premium:hover::before {
    left: 200%;
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.btn-lucro-premium:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    box-shadow: 
        0 1px 0 0 rgba(255,255,255,0.6) inset,
        0 0 0 4px rgba(16, 185, 129, 0.3),
        0 25px 40px -5px rgba(5, 150, 105, 0.6),
        0 0 40px rgba(52, 211, 153, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lucro-premium span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ==== ANIMACAO CIRCULO ASSINATURA ==== */
@keyframes draw-circle {
    to {
        stroke-dashoffset: 0;
    }
}
.animate-draw-circle {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw-circle 1s ease-out forwards;
    animation-delay: 0.5s;
}
