/* Base Styles & Utility Classes */
:root {
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

body {
    background-color: #050608; /* Quase preto / grafite ultra profundo */
}

/* Premium Animated Text Gradient */
.hero-blue-text {
    background: linear-gradient(to right, #3b82f6 0%, #06b6d4 25%, #3b82f6 50%, #06b6d4 75%, #3b82f6 100%) !important;
    background-size: 200% auto !important;
    color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: shine-gradient 4s linear infinite !important;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.3));
}

@keyframes shine-gradient {
    to { background-position: 200% center; }
}

/* Checkered Grid Pattern (Fades in below Hero) */
.checkered-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent, transparent 100vh, black 130vh);
    mask-image: linear-gradient(to bottom, transparent, transparent 100vh, black 130vh);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050608; 
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.35); 
}

/* Glassmorphism Classes */
.glass-nav {
    background: rgba(5, 6, 8, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    z-index: 1;
    border-radius: inherit;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: none;
}

.glass-badge {
    background: rgba(109, 40, 217, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(109, 40, 217, 0.3);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.glass-btn-primary {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.8) 0%, rgba(59, 130, 246, 0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.glass-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar links */
.nav-link {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #6d28d9;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Animations */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Hero Text Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.2);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100svh; /* svh respeita a barra do browser mobile */
    padding-top: 5rem;  /* espaço para navbar fixa */
    padding-bottom: 3rem;
}

/* ============================================================
   AURORA / CHAMAS — Wrapper
   ============================================================ */
.hero-flames-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    filter: blur(72px);
    -webkit-filter: blur(72px);
    /* Fade suave para baixo */
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.9) 40%,
        rgba(0,0,0,0) 100%
    );
    mask-image: linear-gradient(to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.9) 40%,
        rgba(0,0,0,0) 100%
    );
}

.flame-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    will-change: transform;
}

.flame-orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.9;
    will-change: transform, border-radius, opacity;
}

/* Verde: Canto Superior Esquerdo (#34A853) */
.flame-green {
    top: -25%;
    left: -8%;
    width: 48vw;
    height: 38vw;
    background: radial-gradient(circle at center, rgba(52, 168, 83, 0.95) 0%, rgba(52, 168, 83, 0.45) 50%, transparent 75%);
    animation: flameGreen 16s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

/* Amarelo: Topo Centro-Esquerda (#FBBC05) */
.flame-yellow {
    top: -30%;
    left: 20%;
    width: 44vw;
    height: 35vw;
    background: radial-gradient(circle at center, rgba(251, 188, 5, 0.9) 0%, rgba(251, 188, 5, 0.4) 50%, transparent 75%);
    animation: flameYellow 19s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

/* Vermelho: Topo Centro-Direita (#EA4335) */
.flame-red {
    top: -30%;
    left: 45%;
    width: 46vw;
    height: 36vw;
    background: radial-gradient(circle at center, rgba(234, 67, 53, 0.9) 0%, rgba(234, 67, 53, 0.4) 50%, transparent 75%);
    animation: flameRed 17s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

/* Azul: Canto Superior Direito (#4285F4) */
.flame-blue {
    top: -22%;
    right: -8%;
    width: 50vw;
    height: 40vw;
    background: radial-gradient(circle at center, rgba(66, 133, 244, 0.95) 0%, rgba(66, 133, 244, 0.45) 50%, transparent 75%);
    animation: flameBlue 15s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

/* Núcleo de brilho central */
.flame-center-glow {
    top: -15%;
    left: 30%;
    width: 40vw;
    height: 25vw;
    background: radial-gradient(circle at center, rgba(255, 200, 80, 0.35) 0%, transparent 70%);
    animation: flameCenter 13s ease-in-out infinite alternate;
}

/* Animações Orgânicas e Independentes para cada Foco de Luz */
@keyframes flameGreen {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    }
    50% {
        transform: translate(6vw, 4vh) scale(1.15, 0.92) rotate(8deg);
        border-radius: 55% 45% 40% 60% / 40% 60% 50% 50%;
    }
    100% {
        transform: translate(-3vw, 7vh) scale(0.92, 1.1) rotate(-6deg);
        border-radius: 60% 40% 55% 45% / 55% 45% 40% 60%;
    }
}

@keyframes flameYellow {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%;
    }
    50% {
        transform: translate(-5vw, 5vh) scale(1.1, 1.05) rotate(-10deg);
        border-radius: 40% 60% 55% 45% / 60% 40% 45% 55%;
    }
    100% {
        transform: translate(4vw, 3vh) scale(0.95, 0.95) rotate(5deg);
        border-radius: 55% 45% 60% 40% / 50% 50% 55% 45%;
    }
}

@keyframes flameRed {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 55% 45% 50% 50% / 50% 45% 55% 50%;
    }
    50% {
        transform: translate(5vw, 6vh) scale(1.08, 0.92) rotate(12deg);
        border-radius: 45% 55% 60% 40% / 40% 55% 45% 60%;
    }
    100% {
        transform: translate(-4vw, 3vh) scale(0.92, 1.12) rotate(-8deg);
        border-radius: 50% 50% 40% 60% / 55% 40% 60% 45%;
    }
}

@keyframes flameBlue {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
    }
    50% {
        transform: translate(-6vw, 4vh) scale(1.12, 0.88) rotate(-7deg);
        border-radius: 60% 40% 45% 55% / 45% 55% 60% 40%;
    }
    100% {
        transform: translate(3vw, 7vh) scale(0.95, 1.08) rotate(9deg);
        border-radius: 40% 60% 55% 45% / 50% 50% 40% 60%;
    }
}

@keyframes flameCenter {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(2vw, 3vh) scale(1.25);
        opacity: 0.6;
    }
    100% {
        transform: translate(-3vw, 2vh) scale(0.9);
        opacity: 0.25;
    }
}

/* Dot Grid — camada principal de pontilhado */
.hero-dot-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Dot: 1.5px de raio, espaçamento 22px, cor branca discreta */
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.28) 1.5px,
        transparent 1.5px
    );
    background-size: 22px 22px;
    background-position: 0 0;
}

/* Vinheta radial sobre os dots:
   Centro transparente → gradiente aurora aparece forte
   Bordas escuras → dots ficam mais visíveis nas extremidades */
.hero-dot-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        ellipse 70% 65% at 50% 42%,
        /* Centro: tampa os dots para o gradiente brilhar */
        rgba(5, 6, 8, 0.0)   0%,
        rgba(5, 6, 8, 0.0)   20%,
        rgba(5, 6, 8, 0.55)  55%,
        rgba(5, 6, 8, 0.82)  75%,
        rgba(5, 6, 8, 0.95)  100%
    );
}

/* Fade inferior: transição suave para o próximo bloco da página */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(5, 6, 8, 0.7) 60%,
        rgba(5, 6, 8, 1.0) 100%
    );
}


/* Span azul estático no título (igual "IA do Google" na ref.) */
.hero-blue-text {
    color: #4285F4;
}

/* Ícone estilo Estrela animado */
.hero-star-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: starPulseFloat 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(66, 133, 244, 0.4));
}

@keyframes starPulseFloat {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 0 15px rgba(66, 133, 244, 0.3));
    }
    100% {
        transform: translateY(-8px) scale(1.05) rotate(5deg);
        filter: drop-shadow(0 0 30px rgba(66, 133, 244, 0.6));
    }
}

/* Botão CTA estilo pill/Google */
.hero-cta-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 24px 0 rgba(66, 133, 244, 0.15);
    transition: background 0.2s, box-shadow 0.2s;
}

.hero-cta-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 32px 0 rgba(66, 133, 244, 0.3);
}

/* ============================================================
   MAIS VENDIDOS — Horizontal Scroll Row
   ============================================================ */
.bestsellers-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(109,40,217,0.4) transparent;
    padding-bottom: 1rem;
    cursor: grab;
}
.bestsellers-track:active { cursor: grabbing; }
.bestsellers-track::-webkit-scrollbar { height: 5px; }
.bestsellers-track::-webkit-scrollbar-track { background: transparent; }
.bestsellers-track::-webkit-scrollbar-thumb {
    background: rgba(109,40,217,0.4);
    border-radius: 99px;
}

.bestseller-card {
    width: 300px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bestseller-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(109,40,217,0.25);
}

.bs-card-header {
    height: 130px;
    position: relative;
}
.bs-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}
.bs-icon {
    position: absolute;
    bottom: -1.25rem;
    left: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.bs-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.bs-specs span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 99px;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
}

.bs-buy-btn {
    background: linear-gradient(135deg, rgba(109,40,217,0.85), rgba(59,130,246,0.85));
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 0.45rem 1.1rem;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.bs-buy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(109,40,217,0.4);
}

/* ============================================================
   CATEGORY TAGS (shared between sections)
   ============================================================ */
.category-tag {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: rgba(109,40,217,0.15);
    border: 1px solid rgba(109,40,217,0.35);
    color: #a78bfa;
}
.category-tag--pink {
    background: rgba(236,72,153,0.12);
    border-color: rgba(236,72,153,0.3);
    color: #f9a8d4;
}
.category-tag--green {
    background: rgba(16,185,129,0.12);
    border-color: rgba(16,185,129,0.3);
    color: #6ee7b7;
}
.category-tag--blue {
    background: rgba(59,130,246,0.12);
    border-color: rgba(59,130,246,0.3);
    color: #93c5fd;
}
.category-tag--yellow {
    background: rgba(245,158,11,0.12);
    border-color: rgba(245,158,11,0.3);
    color: #fcd34d;
}

/* ============================================================
   CATÁLOGO — Filter Buttons
   ============================================================ */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.5rem 1.4rem;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}
.filter-btn:hover {
    background: rgba(109,40,217,0.18);
    border-color: rgba(109,40,217,0.4);
    color: #fff;
}
.filter-btn.active {
    background: linear-gradient(135deg, rgba(109,40,217,0.75), rgba(59,130,246,0.65));
    border-color: rgba(109,40,217,0.6);
    color: #fff;
    box-shadow: 0 4px 20px rgba(109,40,217,0.3);
}

/* ============================================================
   CATÁLOGO — Product Grid
   ============================================================ */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}
.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(109,40,217,0.2);
}
.catalog-card.hidden-by-filter {
    display: none;
}

.catalog-card-media {
    height: 150px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog-emoji {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.catalog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, rgba(245,158,11,0.9), rgba(234,67,53,0.8));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 99px;
    letter-spacing: 0.03em;
}

.catalog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.catalog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.6rem 0 0.5rem;
    color: #fff;
}
.catalog-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 1.1rem;
}

.catalog-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}
.catalog-specs li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.spec-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.catalog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: auto;
}
.catalog-price {
    display: flex;
    flex-direction: column;
}
.price-old {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
}
.price-new {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.catalog-cta {
    background: linear-gradient(135deg, rgba(109,40,217,0.85), rgba(59,130,246,0.8));
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 0.55rem 1.3rem;
    border-radius: 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}
.catalog-cta:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 24px rgba(109,40,217,0.45);
    color: #fff;
}

/* ============================================================
   NAVBAR — Storm AI
   ============================================================ */
.navbar-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(109,40,217,0.5));
}

.navbar-brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.navbar-icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    position: relative;
    flex-shrink: 0;
}
.navbar-icon-btn:hover {
    background: rgba(109,40,217,0.2);
    border-color: rgba(109,40,217,0.4);
    color: #fff;
    transform: scale(1.08);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #6d28d9, #3b82f6);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #050608;
    line-height: 1;
}

/* ============================================================
   PROFILE DROPDOWN
   ============================================================ */
.profile-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 230px;
    border-radius: 1rem;
    padding: 1rem;
    z-index: 200;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.profile-dropdown.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.dropdown-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: left;
}
.dropdown-btn--primary {
    background: linear-gradient(135deg, rgba(109,40,217,0.8), rgba(59,130,246,0.7));
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}
.dropdown-btn--primary:hover {
    background: linear-gradient(135deg, rgba(109,40,217,1), rgba(59,130,246,0.9));
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: 0.6rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(5,6,8,0.92);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    animation: fadeIn 0.2s ease;
}
.search-overlay.hidden { display: none; }

.search-overlay-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.5rem;
    position: relative;
}
.search-close {
    position: absolute;
    top: -3rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: color 0.2s;
}
.search-close:hover { color: #fff; }

.search-box-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-box-icon {
    position: absolute;
    left: 1.1rem;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
}
.search-box {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1rem;
    padding: 1rem 1.2rem 1rem 3.5rem;
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.search-box:focus { border-color: rgba(109,40,217,0.6); }
.search-box::placeholder { color: rgba(255,255,255,0.3); }

.search-results {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 60vh;
    overflow-y: auto;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.85rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    text-decoration: none;
    color: inherit;
}
.search-result-item:hover {
    background: rgba(109,40,217,0.15);
    border-color: rgba(109,40,217,0.3);
}
.search-result-emoji { font-size: 1.6rem; flex-shrink: 0; }
.search-result-name { font-size: 0.9rem; font-weight: 600; color: #fff; }
.search-result-cat  { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.search-no-results  { text-align: center; color: rgba(255,255,255,0.4); padding: 2rem; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 250;
}
.cart-overlay.hidden { display: none; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 380px;
    max-width: 95vw;
    background: rgba(10,10,15,0.97);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 260;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(24px);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
}
.cart-drawer-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    text-align: center;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-emoji {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 0.75rem;
    flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.4rem;
    transition: color 0.15s, background 0.15s;
    flex-shrink: 0;
}
.cart-item-remove:hover { color: #f87171; background: rgba(248,113,113,0.1); }

/* ============================================================
   AUTH MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}
.modal-overlay.hidden { display: none !important; }

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.auth-modal {
    width: 100%;
    max-width: 420px;
    border-radius: 1.75rem;
    padding: 2rem;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 0.85rem;
    padding: 0.3rem;
    margin-bottom: 1.5rem;
}
.auth-tab {
    flex: 1;
    padding: 0.55rem;
    border-radius: 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    transition: background 0.2s, color 0.2s;
    text-align: center;
}
.auth-tab.active {
    background: rgba(109,40,217,0.7);
    color: #fff;
}

.auth-field {
    margin-bottom: 1rem;
}
.auth-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.auth-field input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.auth-field input:focus {
    border-color: rgba(109,40,217,0.6);
    background: rgba(255,255,255,0.08);
}
.auth-field input::placeholder { color: rgba(255,255,255,0.25); }

.auth-google-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0.85rem;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.auth-google-btn:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
}

.auth-alert {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    font-weight: 500;
}
.auth-alert.success {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    color: #6ee7b7;
}
.auth-alert.error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    color: #fca5a5;
}

/* ============================================================
   ORDERS DRAWER — Meus Pedidos
   ============================================================ */
.orders-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 250;
}
.orders-overlay.hidden { display: none; }

.orders-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 420px;
    max-width: 95vw;
    background: rgba(8, 8, 14, 0.98);
    border-right: 1px solid rgba(255,255,255,0.07);
    z-index: 260;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(24px);
}
.orders-drawer.open { transform: translateX(0); }

/* Header */
.orders-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
    background: rgba(109,40,217,0.05);
}
.orders-header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(109,40,217,0.3), rgba(59,130,246,0.2));
    border: 1px solid rgba(109,40,217,0.3);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Stats bar */
.orders-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    flex-shrink: 0;
}
.orders-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.orders-stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.orders-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.orders-stat-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255,255,255,0.08);
}

/* Filter tabs */
.orders-filter-tabs {
    display: flex;
    gap: 0.4rem;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.orders-filter-tab {
    padding: 0.35rem 1rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.08);
    background: transparent;
    transition: all 0.2s;
}
.orders-filter-tab.active {
    background: rgba(109,40,217,0.3);
    border-color: rgba(109,40,217,0.5);
    color: #c4b5fd;
}
.orders-filter-tab:hover:not(.active) {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
}

/* Body */
.orders-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(109,40,217,0.3) transparent;
}
.orders-drawer-body::-webkit-scrollbar { width: 4px; }
.orders-drawer-body::-webkit-scrollbar-thumb { background: rgba(109,40,217,0.3); border-radius: 99px; }

/* Loading */
.orders-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}
.orders-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(109,40,217,0.2);
    border-top-color: #7c3aed;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty states */
.orders-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    text-align: center;
    padding: 1rem;
}
.orders-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(109,40,217,0.3));
}
.orders-empty-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.orders-empty-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 260px;
}
.orders-login-btn {
    background: linear-gradient(135deg, rgba(109,40,217,0.85), rgba(59,130,246,0.8));
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
}
.orders-login-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(109,40,217,0.4);
    color: #fff;
}

/* Order cards */
.order-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 1.1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}
.order-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #7c3aed, #3b82f6);
    border-radius: 99px;
}
.order-card:hover {
    border-color: rgba(109,40,217,0.25);
    background: rgba(109,40,217,0.05);
}

.order-card-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}
.order-card-emoji {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    flex-shrink: 0;
}
.order-card-info { flex: 1; min-width: 0; }
.order-card-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.order-card-cat {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.1rem;
    text-transform: capitalize;
}
.order-card-price {
    font-size: 1rem;
    font-weight: 800;
    color: #a78bfa;
    white-space: nowrap;
}

.order-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.order-card-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}
.order-status-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.order-status-badge.completed {
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    color: #6ee7b7;
}
.order-status-badge.completed::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.order-access-btn {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.55rem;
    text-align: center;
    background: rgba(109,40,217,0.12);
    border: 1px solid rgba(109,40,217,0.25);
    border-radius: 0.65rem;
    color: #c4b5fd;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    font-family: 'Outfit', sans-serif;
}
.order-access-btn:hover {
    background: rgba(109,40,217,0.22);
    border-color: rgba(109,40,217,0.45);
}

/* ============================================================
   CURSOR FOLLOWER — Premium
   ============================================================ */
@media (pointer: fine) {
    body.cursor-active,
    body.cursor-active a,
    body.cursor-active button,
    body.cursor-active [role="button"] { cursor: none !important; }
}

.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s, background .2s, opacity .2s;
    opacity: 0;
    mix-blend-mode: difference;
    will-change: transform;
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(167, 139, 250, 0.7);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, border-color .25s, opacity .3s, background .25s;
    opacity: 0;
    will-change: transform;
}
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 160px; height: 160px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(109,40,217,.12) 0%,
        rgba(59,130,246,.06) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity .4s, width .3s, height .3s;
    will-change: transform;
}

.cursor-dot.visible,
.cursor-ring.visible,
.cursor-glow.visible { opacity: 1; }

.cursor-ring.hovering {
    width: 52px; height: 52px;
    border-color: rgba(167,139,250,1);
    background: rgba(109,40,217,.08);
    border-width: 2px;
}
.cursor-dot.hovering  { width: 5px; height: 5px; background: #c4b5fd; }
.cursor-glow.hovering {
    width: 220px; height: 220px;
    background: radial-gradient(circle,
        rgba(109,40,217,.22) 0%,
        rgba(59,130,246,.08) 40%,
        transparent 70%
    );
}
.cursor-dot.clicking  { transform: translate(-50%,-50%) scale(.7); }
.cursor-ring.clicking { transform: translate(-50%,-50%) scale(1.5); opacity:.4; }

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */
@media (max-width: 768px) {
    .hero-section { padding-top: 6rem; padding-bottom: 4rem; }
    .hero-flames-wrapper { filter: blur(50px); -webkit-filter: blur(50px); height: 80%; }
    .flame-mobile-extra  { display: block; }
    .flame-green  { width: 90vw;  height: 72vw; }
    .flame-blue   { width: 95vw;  height: 78vw; }
    .flame-yellow { width: 85vw;  height: 68vw; }
    .flame-red    { width: 90vw;  height: 72vw; }
    .hero-dot-grid {
        background-size: 18px 18px;
        background-image: radial-gradient(circle, rgba(255,255,255,.22) 1.2px, transparent 1.2px);
    }
    .hero-dot-vignette {
        background: radial-gradient(ellipse 85% 72% at 50% 40%,
            rgba(5,6,8,0)    0%,
            rgba(5,6,8,0)   15%,
            rgba(5,6,8,.42) 52%,
            rgba(5,6,8,.82) 76%,
            rgba(5,6,8,.95) 100%
        );
    }
}
@media (max-width: 480px) {
    .hero-section h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); line-height: 1.18; }
    .hero-section p  { font-size: .92rem; }
}
@media (pointer: coarse) {
    .cursor-dot, .cursor-ring, .cursor-glow { display: none !important; }
    body { cursor: auto !important; }
}

/* ============================================================
   BENTO GRID & OFERTA PREMIUM
   ============================================================ */
#oferta-premium {
    position: relative;
}

.oferta-glow-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 100%;
}
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-col-span-2 {
        grid-column: span 2;
    }
}
@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-col-span-2 {
        grid-column: span 2;
    }
}

.bento-card {
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.bento-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}
.bento-glow-yellow {
    top: -50px; right: -50px;
    background: rgba(250, 204, 21, 0.2);
}
.bento-glow-green {
    bottom: -50px; left: -50px;
    background: rgba(16, 185, 129, 0.2);
}
.bento-glow-purple {
    top: -50px; right: -50px;
    background: rgba(167, 139, 250, 0.2);
}

.tool-chip {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}
.faq-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
}
.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-content {
    display: none;
}

/* ============================================================
   REVIEWS (AVALIAÇÕES)
   ============================================================ */
.review-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.review-item:last-child {
    border-bottom: none;
}
.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-avatar svg {
    width: 20px; height: 20px;
    color: rgba(255,255,255,0.4);
}

/* Modal Scrollbar Customization */
#reviews-full-container::-webkit-scrollbar {
    width: 6px;
}
#reviews-full-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}
#reviews-full-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}
#reviews-full-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}
