/* ========================================= */
/* 1. VARIÁVEIS E RESET GERAL        */
/* ========================================= */
:root {
    --primary-color: #002D62; /* Azul Escuro */
    --accent-color: #0077B6;  /* Azul Claro */
    --highlight: #FFD700;     /* Amarelo Destaque */
    --bg-light: #F4F7F6;      /* Fundo do site */
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* ========================================= */
/* 2. MENU / HEADER            */
/* ========================================= */
.header {
    background-color: #05090C;
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }

.nav-links { display: flex; gap: 20px; }
.nav-links a { color: rgba(255,255,255,0.8); font-weight: 500; }
.nav-links a:hover { color: var(--white); text-decoration: underline; }


/* ========================================= */
/* 3. BANNER PRINCIPAL (HERO)         */
/* (Estilo Split Fade / Gamer)        */
/* ========================================= */

.hero-section {
    /* Imagem do Universo */
    background-image: url('https://www.10wallpaper.com/wallpaper/1366x768/1309/outside_orbit-Universe_HD_Wallpaper_1366x768.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    color: var(--white);
    min-height: 70vh; /* Altura do Banner */
    
    display: flex;
    align-items: center;
    /* O alinhamento principal já é à esquerda, mas o container interno centralizava */
    justify-content: flex-start; 
    
    position: relative;
    margin-bottom: 40px;
}

/* O Degradê Lateral (Fosco na esquerda -> Transparente na direita) */
.hero-overlay {
    background: linear-gradient(88deg, 
        rgba(5, 15, 35, 0.95) 0%, 
        rgba(5, 15, 35, 0.8) 45%, 
        rgba(5, 15, 35, 0.1) 80%, 
        rgba(5, 15, 35, 0) 100%
    );
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
    
    /* Garante que o conteúdo interno também se alinhe à esquerda */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px; /* Largura máxima do bloco de texto */
    text-align: left; /* Alinha o texto dentro do bloco à esquerda */
    
    /* --- AJUSTE DE POSIÇÃO (Mover para a Esquerda) --- */
    /* Sobrescreve a margem automática do .container para alinhar à esquerda */
    margin-left: 0 !important; 
    margin-right: auto;
    /* Adiciona um espaçamento da borda esquerda da tela */
    padding-left: 5%; 
}

/* Ícone */
.hero-icon {
    width: 70px;
    height: auto;
    display: block;
    /* Remove a margem automática para alinhar com o texto */
    margin: 0 0 25px 0; 
    filter: brightness(0) invert(0.9); /* Deixa branco/prata */
}

/* --- NOVO ESTILO DO TÍTULO (Igual "Gêneros Populares") --- */
.hero-content h1 {
    font-family: 'Roboto', sans-serif; /* Garante a fonte */
    font-size: 3.2rem;    /* Tamanho grande */
    font-weight: 900;     /* O mais negrito possível */
    color: #ffffff;       /* Cor branca pura */
    line-height: 1.1;     /* Linhas mais próximas */
    margin-bottom: 20px;
    text-transform: uppercase; /* Tudo em maiúsculo */
    letter-spacing: -1px; /* Letras levemente mais juntas */
    
    /* --- EFEITO GLITCH / CROMÁTICO --- */
    /* Sombra vermelha para a esquerda/cima, ciano para a direita/baixo */
    /* text-shadow: -2px -1px 0 #ff0000, 2px 1px 0 #00ffff; */
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    font-weight: 400;
    max-width: 90%;
    /* Uma sombra suave para melhorar a leitura do subtítulo também */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
/* ========================================= */

/* ========================================= */
/* 4. LAYOUT GERAL (GRIDS E TEXTOS)   */
/* ========================================= */
.section-block { margin-bottom: 60px; }
.section-title { margin-bottom: 20px; border-left: 5px solid var(--accent-color); padding-left: 10px; color: var(--primary-color); }
.main-title { text-align: center; font-size: 2rem; color: var(--primary-color); }
.subtitle { text-align: center; color: var(--text-light); margin-bottom: 40px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }


/* ========================================= */
/* 5. CARDS DE ARTIGOS          */
/* ========================================= */
.card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.2s; }
.card:hover { transform: translateY(-5px); }
.card-img { 
    height: 150px; 
    width: 100%;
    background-size: cover;        /* Cobre todo o espaço */
    background-position: center;   /* Centraliza a imagem */
    background-repeat: no-repeat;
    background-color: #002D62;     /* Fundo azul caso a imagem demore */
}
.card-body { padding: 20px; }
.card-body h4 { margin-bottom: 10px; color: var(--primary-color); }
.read-more { color: var(--accent-color); font-weight: bold; font-size: 0.9rem; }


/* ========================================= */
/* 6. DESTAQUES E LISTAS (NEWS)       */
/* ========================================= */
.affiliate-highlight { margin: 40px 0; text-align: center; }
.affiliate-box {
    background: #fff;
    border: 2px solid var(--highlight);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}
.tag { background: var(--highlight); display: inline-block; padding: 5px 10px; font-size: 0.8rem; font-weight: bold; border-radius: 20px; margin-bottom: 10px; }
.btn-amazon { background: #FF9900; color: white; padding: 10px 20px; border-radius: 5px; margin-top: 15px; display: inline-block; }

.split-section { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.half-block { flex: 1; min-width: 300px; }
.simple-list li, .news-list li {
    background: var(--white);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 3px solid var(--accent-color);
}


/* ========================================= */
/* 7. BOTÕES SECUNDÁRIOS          */
/* ========================================= */
.quick-links { text-align: center; margin-top: 40px; }
.btn-outline { border: 2px solid var(--primary-color); color: var(--primary-color); margin: 0 10px; background: transparent; }
.btn-outline:hover { background: var(--primary-color); color: var(--white); }


/* ========================================= */
/* 8. ESTILOS DE OUTRAS PÁGINAS      */
/* ========================================= */
/* Biblioteca */
 /* ========================================= */
/* BIBLIOTECA ESTILO GAMER (NOVO)            */
/* ========================================= */

.library-grid-gamer {
    display: grid;
    /* Cria colunas automáticas que se ajustam */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* O CARTÃO BASE */
.gamer-card {
    position: relative;
    height: 220px; /* Altura fixa */
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Efeito Hover: Sobe e aumenta sombra */
.gamer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2;
}

/* --- CORES DOS CARTÕES --- */
.card-physics { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.card-tech { background: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%); }
.card-ufv { background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%); }
.card-myth { background: linear-gradient(135deg, #232526 0%, #414345 100%); }

/* Textura sutil */
.card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    pointer-events: none;
}

/* CONTEÚDO */
.card-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.gamer-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.gamer-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gamer-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 400;
}

/* ETIQUETA "ACESSAR" */
.card-tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(5px);
}

/* Setup & Produtos */
.product-card { background: var(--white); padding: 15px; text-align: center; border: 1px solid #eee; border-radius: 8px; }
.product-card .price { display: block; color: var(--accent-color); font-size: 0.9rem; margin-bottom: 10px; }
.product-card a { color: var(--primary-color); font-weight: bold; font-size: 0.8rem; text-transform: uppercase; }

.setup-section { background: var(--primary-color); color: var(--white); padding: 30px; border-radius: 10px; margin-top: 40px; }
.setup-item { background: rgba(255,255,255,0.1); padding: 10px; text-align: center; border-radius: 5px; }

/* Sobre & Footer */
.divider { border: 0; height: 1px; background: #ddd; margin: 50px 0; }
.transparency-box { background: #fff3cd; padding: 10px; border-radius: 5px; margin: 20px 0; text-align: center; color: #856404; }

footer {
    background: var(--primary-color);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    font-size: 0.9rem;
}


/* ========================================= */
/* 9. RESPONSIVIDADE             */
/* ========================================= */
@media (max-width: 768px) {
    .nav-container { flex-direction: column; }
    .nav-links { margin-top: 15px; gap: 10px; font-size: 0.9rem; }
    
    /* Ajuste do Banner no Celular */
    .hero-section { justify-content: center; }
    .hero-overlay { background: linear-gradient(0deg, rgba(5,15,35,1) 0%, rgba(5,15,35,0.6) 100%); }
    .hero-content { text-align: center; padding: 20px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-icon { margin: 0 auto 20px auto; }
    
    .split-section { flex-direction: column; gap: 20px; }
    .btn-outline { display: block; margin: 10px auto; width: 80%; }
}

/* Este código faz 3 coisas:
1.  **Esconde a barra cinza** (`scrollbar-width: none`).
2.  **Cria as setas** redondas e elegantes nas laterais.
3.  **Posiciona** tudo corretamente.

```css */


.block-highlight-wrapper {
    margin-top: 60px;
    padding: 0 20px;
}

/* ========================================= */
/* BLOCO COM IMAGEM DE FUNDO + DEGRADÊ       */
/* ========================================= */

.orange-box {
    /* --- FUNDO ALTERADO --- */
    background: 
        /* Degradê "to top" (De baixo para cima):
           0% (Lá embaixo): Cor sólida escura (Mistura de Marrom/Preto) para dar base.
           40% (Meio-baixo): Laranja transparente suavizando.
           100% (Topo): Totalmente transparente (para ver a imagem).
        */
        /* linear-gradient(to top, 
            rgb(13 14 14 / 95%) 0%,     /* Base Escura (Quase preto) */
            rgb(201 84 26 / 50%) 40%,   /* Laranja no meio do caminho */
            rgba(0,0,0,0) 100%          /* Transparente no topo */
        /* ), */
         
        /* Sua imagem de fundo */
        url('https://wallpapers.com/images/hd/dark-space-wallpaper-kzwzjwusv95m556b.jpg');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Configurações visuais */
    color: white; 
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    max-width: 1200px;
    margin: 0 auto;
    
    border: 1px solid rgba(255, 200, 150, 0.1); 
}
/* Container do título */
.orange-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* O Título Principal */
.box-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;      /* Tamanho grande */
    color: #0c0c0c;         /* Branco puro */
    font-weight: 300;       /* Fonte MAIS FINA (Light) para tirar a "grosseira" */
    text-transform: uppercase;
    letter-spacing: 2px;    /* Espaçamento elegante entre letras */
    margin-bottom: 15px;
    line-height: 1.2;
    /* text-shadow: 0 2px 10px rgba(0,0,0,0.5);  */
}

/* O Destaque "Só notícias de verdade" */
.highlight-text {
    /* --- FONTE DE NOTÍCIA (Estilo Jornal) --- */
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 900;       /* Extra Negrito */
    letter-spacing: -1px;   /* Letras mais juntas para impacto */
    
    margin-left: 10px;
    
    /* --- COR SÓLIDA ESCURA (Sem Gradiente) --- */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
    
    color: #1a1a1a; /* Cinza Quase Preto (Dark) */
    
    display: inline-block;
    transform: none;
}

/* Subtítulo (Refinado) */
.box-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9) !important; /* Branco levemente transparente */
    font-weight: 400;       /* Peso normal */
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

/* --- AJUSTE MOBILE (Para não quebrar no celular) --- */
@media (max-width: 768px) {
    .box-title {
        font-size: 1.6rem; /* Diminui no celular */
        display: flex;
        flex-direction: column; /* Coloca um em cima do outro */
        gap: 5px;
    }
    
    .highlight-text {
        margin-left: 0;
        /* No celular, removemos o traço se houver no HTML, ou apenas alinhamos */
    }
}


/* --- WRAPPER PARA POSICIONAR AS SETAS --- */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* --- O CARROSSEL --- */
.carousel-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 15px 5px 25px 5px; /* Um pouco mais de espaço para a sombra dos cards */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE */
}

/* Esconder barra no Chrome/Safari/Edge */
.carousel-container::-webkit-scrollbar {
    display: none;
}

/* Cards (Mantivemos fundo branco para contraste) */
.carousel-card {
    min-width: 300px;
    max-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    text-align: left;
    border: none; /* Remove borda cinza */
    background: #fff;
    color: var(--text-dark); /* Volta a cor do texto interno para escuro */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Sombra mais forte nos cards */
}

/* --- SETAS AGORA SÃO BRANCAS PARA DESTAQUE --- */
.nav-arrow {
    background-color: #ffffff; /* Fundo branco */
    color: var(--primary-color); /* Ícone azul */
    border: none;
    width: 45px; /* Um pouco maiores */
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* Sombra para "flutuar" */
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.nav-arrow:hover {
    background-color: var(--accent-color); /* Azul claro ao passar o mouse */
    color: white; /* Ícone branco ao passar o mouse */
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: -25px;
}

.right-arrow {
    right: -25px;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .nav-arrow {
        display: none;
    }
    .carousel-container {
        padding-bottom: 15px;
    }
    .orange-box {
        padding: 30px 15px;
        border-radius: 15px;
    }
}

/* ========================================= */
/* ESTILO DA VITRINE DE PRODUTOS             */
/* ========================================= */

/* Container específico dos produtos (para não afetar as notícias) */
.product-container {
    padding: 20px 5px;
    align-items: stretch; /* Faz todos os cards terem a mesma altura */
}

/* O Cartão do Produto */
.product-card {
    min-width: 260px;
    max-width: 260px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    flex: 0 0 auto;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
    
    display: flex;
    flex-direction: column; /* Organiza Imagem em cima, Texto embaixo */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

/* Imagem do Produto */
.product-img {
    height: 200px; /* Altura fixa para a foto */
    width: 100%;
    background-size: contain; /* 'contain' mostra o produto inteiro sem cortar */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff; /* Fundo branco para destacar o produto */
    border-bottom: 1px solid #f0f0f0;
}

/* Informações (Texto) */
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Ocupa o resto do espaço */
    text-align: left;
}

.product-info h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.product-info .desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
    flex-grow: 1; /* Empurra o preço para o final do card */
}

/* Linha de Preço e Botão */
.price-row {
    margin-top: auto; /* Garante que fique no rodapé do card */
}

.price {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

/* Botão de Compra */
.btn-buy {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--accent-color); /* Azul Tecnológico */
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-buy:hover {
    background-color: var(--primary-color); /* Azul Escuro ao passar mouse */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ========================================= */
/* AJUSTE MOBILE PARA A SEÇÃO DE NOTÍCIAS    */
/* (Adicione isso no final do seu CSS)       */
/* ========================================= */

@media (max-width: 768px) {
    
    /* 1. Aumentar espaço lateral e diminuir o interno da caixa */
    .block-highlight-wrapper {
        padding: 0 10px; /* Menos margem lateral na tela */
    }

    .orange-box {
        padding: 30px 15px; /* Reduz de 50px para 30px o espaço interno */
        border-radius: 15px; /* Arredondamento menor para combinar */
    }

    /* 2. Ajustar o Título para caber na tela */
    .box-title {
        font-size: 1.4rem; /* Fonte menor (era 2.2rem) */
        line-height: 1.4;  /* Altura da linha para não encavalar */
        display: flex;     /* Flexbox para organizar */
        flex-direction: column; /* Coloca um texto em cima do outro */
        align-items: center;    /* Centraliza tudo */
        gap: 10px;         /* Espaço entre "Sem Achismo" e o destaque */
    }

    /* 3. O Destaque "Só notícias de verdade" */
    .highlight-text {
        font-size: 1.2rem; /* Tamanho confortável para ler */
        margin-left: 0;    /* Remove a margem lateral */
        margin-top: 5px;   /* Um pouco de espaço em cima */
        white-space: normal; /* Permite que o texto quebre linha se precisar */
        display: inline-block;
        width: auto;       /* Deixa o tamanho automático */
        transform: skew(-5deg); /* Mantém o estilo inclinado */
    }

    /* 4. Ajustar subtítulo (se você decidir usar no futuro) */
    .box-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* 5. Ajustar o Carrossel para aproveitar a tela toda */
    .carousel-container {
        padding-left: 0;
        padding-right: 0;
        /* Garante que o card da esquerda comece alinhado */
        justify-content: flex-start; 
    }
    
    .carousel-card {
        /* Reduz um pouquinho a largura do card no celular para ver que tem mais ao lado */
        min-width: 260px; 
        max-width: 260px;
    }
}

/* ========================================= */
/* LAYOUT SPLIT (ESTILO NUBANK)              */
/* ========================================= */

.nubank-wrapper {
    display: flex;
    align-items: center; /* Alinha verticalmente no centro */
    gap: 40px;           /* Espaço entre o texto e o carrossel */
    padding: 20px 0;
}

/* --- LADO ESQUERDO (Texto e Botões) --- */
.nubank-left {
    flex: 0 0 300px; /* Largura fixa para o texto (300px) */
    max-width: 300px;
    text-align: left;
}

.nubank-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.nubank-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Container dos Botões (Setinhas) */
.nubank-controls {
    display: flex;
    gap: 15px; /* Espaço entre os botões */
}

/* Estilo das Setas (Cinza claro igual Nubank) */
.nubank-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f2f5; /* Cinza bem clarinho */
    color: var(--primary-color);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nubank-arrow:hover {
    background-color: var(--accent-color); /* Fica azul no hover */
    color: white;
    transform: scale(1.1);
}

/* --- LADO DIREITO (Carrossel) --- */
.nubank-right {
    flex: 1; /* Ocupa todo o espaço restante */
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Permite rolagem lateral */
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
    
    /* Esconde barra de rolagem */
    scrollbar-width: none;
}
.nubank-right::-webkit-scrollbar { display: none; }

/* Ajuste nos Cards para funcionarem nesse layout */
.nubank-right .gamer-card {
    min-width: 240px; /* Um pouco menor para caber mais */
    max-width: 240px;
    height: 280px;    /* Cards mais verticais estilo Nubank */
    flex: 0 0 auto;   /* Não encolher */
    scroll-snap-align: start;
}

/* --- RESPONSIVIDADE (Celular) --- */
@media (max-width: 900px) {
    .nubank-wrapper {
        flex-direction: column; /* Empilha: Texto em cima, Cards embaixo */
        align-items: flex-start;
        gap: 20px;
    }

    .nubank-left {
        flex: auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Alinha texto à esquerda */
    }
    
    .nubank-controls {
        display: none; /* Esconde setas no celular (usa o dedo) */
    }

    .nubank-title { font-size: 2rem; }
    
    .nubank-right {
        width: 100%; /* Carrossel ocupa tela toda */
    }
}

/* ========================================= */
/* SEÇÃO PROMOÇÃO GAMER (ESTILO NUBANK)      */
/* ========================================= */

/* ========================================= */
/* BOTÃO STEAM (FORMATO DELICADO + COR AZUL) */
/* ========================================= */

/* Botão Steam (Formato IDÊNTICO ao botão filmes, apenas cor Azul) */
.btn-steam-blue {
    background-color: #16A0FF; /* Roxo mais fechado "Empresarial" */
    color: white;
    padding: 15px 30px;
    border-radius: 50px; /* Bem redondo (Pílula) */
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37 70 129 / 64%);
}

.btn-steam-blue:hover {
    background-color: #1B2839;
    transform: translateY(-2px);
}

.promo-gamer-wrapper {
    background-color: #f5f5f7; /* Fundo cinza claro igual do print */
    border-radius: 24px;       /* Bordas bem arredondadas */
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden; /* Para nada sair da caixa */
    gap: 40px;
    margin-bottom: 60px;
}

/* Se quiser a versão DARK (recomendo para jogos), troque o background acima por:
   background: linear-gradient(135deg, #202020 0%, #1a1a1a 100%);
   e mude a cor dos textos abaixo para white.
*/

/* --- LADO ESQUERDO (TEXTO) --- */
.promo-content-left {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.promo-title {
    font-size: 2.8rem;
    line-height: 1.1;
    color: #111; /* Preto fosco */
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.promo-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}



/* --- LADO DIREITO (CELULAR) --- */
.promo-visual-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* O Desenho do Celular (Borda preta) */
.phone-mockup {
    width: 260px;
    height: 520px;
    background: #000;
    border-radius: 40px;
    padding: 10px; /* Borda do celular */
    box-shadow: 0 20px 50px rgba(0,0,0,0.2); /* Sombra realista */
    position: relative;
    z-index: 2;
    transform: rotate(-5deg); /* Leve inclinação estilosa */
    transition: transform 0.5s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg) scale(1.02); /* Fica reto ao passar o mouse */
}

/* A tela do celular */
.phone-screen {
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* A imagem do jogo dentro do celular */
.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher a tela toda */
}

/* Cartão Flutuante (Decoração) */
.floating-card-decor {
    position: absolute;
    top: 20%;
    right: 10%;
    background: linear-gradient(135deg, #ff0055, #ff5500);
    padding: 15px 25px;
    border-radius: 15px;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    transform: rotate(10deg);
    box-shadow: 0 10px 20px rgba(255, 0, 85, 0.4);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
}

/* Animação suave do cartão */
@keyframes floatCard {
    0% { transform: translateY(0) rotate(10deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
    100% { transform: translateY(0) rotate(10deg); }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .promo-gamer-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .promo-content-left {
        margin-bottom: 40px;
    }

    .phone-mockup {
        width: 200px;
        height: 400px;
        transform: rotate(0deg); /* Reto no celular */
    }
    
    .floating-card-decor {
        top: 0; right: 0;
    }
}

/* ========================================= */
/* SEÇÃO CINE CIÊNCIA (ESTILO NU EMPRESAS)   */
/* ========================================= */

.movie-section-wrapper {
    background-color: #E9ECEF; /* O Cinza claro da referência */
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible; /* Permite que elementos flutuem um pouco se precisar */
    gap: 50px;
    margin-bottom: 60px;
}

/* --- TEXTO (ESQUERDA) --- */
.movie-content-left {
    flex: 1;
    max-width: 450px;
    z-index: 2;
}

.movie-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: #111;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.movie-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

/* Botão Roxo (Igual da referência) */
.btn-movie-purple {
    background-color: #E2B616; /* Roxo mais fechado "Empresarial" */
    color: white;
    padding: 15px 30px;
    border-radius: 50px; /* Bem redondo (Pílula) */
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(112, 37, 129, 0.3);
}

.btn-movie-purple:hover {
    background-color: #C11119;
    transform: translateY(-2px);
}

/* --- VISUAL (DIREITA) --- */
.movie-visual-right {
    flex: 1;
    position: relative;
    height: 400px; /* Altura da área visual */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* O Celular (CSS Mockup) */
.movie-phone {
    width: 180px;
    height: 360px;
    background: #222; /* Borda do celular */
    border-radius: 25px;
    padding: 8px;
    position: relative;
    z-index: 2; /* Fica NA FRENTE do ingresso */
    
    /* A Inclinação chave da imagem de referência */
    transform: rotate(-8deg) translateX(-20px); 
    box-shadow: 10px 20px 40px rgba(0,0,0,0.25);
    transition: transform 0.3s;
}

.movie-phone:hover {
    transform: rotate(0deg) scale(1.05); /* Endireita ao passar o mouse */
}

.movie-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
}

.movie-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* O Ingresso/Cartão atrás (Simulando o cartão prata da imagem) */
.movie-ticket-card {
    position: absolute;
    width: 200px;
    height: 120px;
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 100%); /* Prateado/Branco */
    border-radius: 15px;
    z-index: 1; /* Fica ATRÁS do celular */
    
    /* Posicionamento para aparecer atrás */
    right: 40px; 
    top: 100px;
    
    /* Inclinação oposta ou complementar */
    transform: rotate(15deg); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid #ccc;
}

/* Detalhes do "Ingresso" para não ficar vazio */
.ticket-header {
    font-weight: 800;
    color: #333;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px dashed #bbb;
    padding-bottom: 5px;
}

.ticket-body {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .movie-section-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .movie-visual-right {
        height: 300px;
        width: 100%;
    }
    
    .movie-phone {
        transform: rotate(-5deg); /* Menos inclinação no celular */
    }
    
    .movie-ticket-card {
        right: 15%; /* Ajuste para não sair da tela no mobile */
    }
}

/* ========================================= */
/* MOCKUPS: MONITOR GAMER E SMART TV         */
/* ========================================= */

/* --- 1. MONITOR PC GAMER --- */
.pc-wrapper {
    position: relative;
    z-index: 2;
    /* Inclinação leve para dar estilo */
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza a base com o monitor */
}

.pc-wrapper:hover {
    transform: scale(1.02); /* Aproxima ao passar o mouse */
}

/* A Moldura da Tela */
.pc-monitor {
    width: 380px;      /* Bem largo */
    height: 220px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 8px;      /* Borda do monitor */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* A Tela em si */
.pc-screen {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    border-radius: 4px;
}

.pc-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* O Pescoço do suporte */
.pc-stand-neck {
    width: 40px;
    height: 30px;
    background: #222;
    margin-top: -5px; /* Entra um pouco no monitor */
    z-index: -1;
}

/* A Base do suporte */
.pc-stand-base {
    width: 120px;
    height: 15px;
    background: #111;
    border-radius: 20px 20px 0 0; /* Arredondado em cima */
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

/* Ajuste do Cartão Flutuante para o PC */
.pc-decor {
    top: -10px;
    right: 0;
    transform: rotate(15deg);
}


/* --- 2. SMART TV 4K --- */
.tv-wrapper {
    position: relative;
    z-index: 2;
    transform: rotate(-3deg); /* Leve inclinação */
    transition: transform 0.5s ease;
}

.tv-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Moldura da TV (Bordas mais finas que o monitor) */
.tv-frame {
    width: 360px;
    height: 210px;
    background: #111;
    border: 3px solid #333; /* Moldura metálica */
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}

.tv-screen {
    width: 100%;
    height: 100%;
    background: #000;
}

.tv-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pés da TV */
.tv-feet {
    display: flex;
    justify-content: space-between;
    padding: 0 30px; /* Distância dos pés das bordas */
    margin-top: -2px;
}

.tv-foot {
    width: 10px;
    height: 25px;
    background: #222;
}

.tv-foot.left { transform: skewX(20deg); }  /* Pé tortinho pra esquerda */
.tv-foot.right { transform: skewX(-20deg); } /* Pé tortinho pra direita */

/* Ajuste do Ingresso para ficar atrás da TV */
.tv-ticket-pos {
    top: -20px;
    right: -20px;
    transform: rotate(10deg);
}

/* --- RESPONSIVIDADE (Ajuste para Celular) --- */
@media (max-width: 768px) {
    .pc-monitor, .tv-frame {
        width: 280px; /* Reduz tamanho no celular */
        height: 160px;
    }
    .pc-stand-base { width: 80px; }
    .tv-feet { padding: 0 20px; }
    
    .pc-decor, .tv-ticket-pos {
        top: -30px;
        right: 0;
    }
}

/* Classe para o texto riscado (Rejeitado) */
.rejected {
    text-decoration: line-through;        /* Cria o risco no meio */
    text-decoration-color: #f02703;       /* Cor do risco: Vermelho (para indicar erro/proibido) */
    text-decoration-thickness: 3px;       /* Espessura do risco para ficar bem visível */
    opacity: 0.6;                         /* Deixa o texto meio "apagado" */
    font-style: italic;                   /* Opcional: itálico reforça que é algo "passado" */
}





/* ========================================= */
/* PÁGINA DE OFERTAS GAMES (NOVA)            */
/* ========================================= */

/* Fundo escuro específico para a página de games */
.gamer-page-body {
    background-color: #0b0d12; /* Quase preto */
    color: #e0e0e0;
}

/* Título da página */
.gamer-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #0b0d12 0%, #151922 100%);
}
.gamer-hero h1 {
    font-size: 3rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.gamer-hero p { color: #888; font-size: 1.2rem; }

/* ========================================= */
/* PÁGINA DE OFERTAS (LAYOUT EM GRADE)       */
/* ========================================= */

/* Container da Grade (Onde você tinha a dúvida) */
.game-list-section {
    padding-bottom: 80px;
    max-width: 1200px; /* Largura maior para caber 3 cards */
    margin: 0 auto;    /* Centraliza na tela */
    
    /* AQUI MUDA PARA GRID (LADO A LADO) */
    display: grid;
    /* Cria colunas automáticas: Se couber, coloca 3, se não, coloca 2 */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Espaço entre os cards */
}

/* O CARTÃO DO JOGO (Agora a foto fica em CIMA) */
.game-deal-card {
    background-color: #1a1d26;
    border-radius: 15px;
    overflow: hidden;
    
    /* Mudamos de ROW para COLUMN para a foto ficar em cima */
    display: flex;
    flex-direction: column; 
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
    height: 100%; /* Garante que todos tenham mesma altura */
}

.game-deal-card:hover {
    transform: translateY(-10px); /* Sobe mais ao passar o mouse */
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* --- PARTE 1: IMAGEM (Agora fica no topo) --- */
.deal-image {
    width: 100%;
    height: 200px; /* Altura fixa da capa */
    position: relative;
    overflow: hidden;
    margin: 0; /* Removemos margens negativas antigas */
    clip-path: none; /* Removemos o corte diagonal */
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-deal-card:hover .deal-image img {
    transform: scale(1.1);
}

/* --- PARTE 2: INFORMAÇÕES (Agora fica embaixo) --- */
.deal-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1; /* Ocupa todo o espaço restante */
}

/* Etiqueta da Plataforma */
.platform-badge {
    align-self: flex-start; /* Alinha à esquerda */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}
.platform-badge.steam { background-color: #171a21; border: 1px solid #2a475e; color: #66c0f4; }
.platform-badge.epic { background-color: #2a2a2a; border: 1px solid #444; }

/* Título */
.game-title {
    font-size: 1.4rem; /* Um pouco menor para caber no card */
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
}

/* Descrição */
.game-desc {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
    
    /* Truque para cortar texto se for muito longo (3 linhas max) */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Área de Preço e Botão (Rodapé do Card) */
.pricing-area {
    margin-top: auto; /* Empurra isso para o final do card */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.3); /* Fundo mais escuro */
    padding: 10px;
    border-radius: 8px;
}

.discount-tag {
    background-color: #4c6b22;
    color: #a4d007;
    font-size: 1.2rem;
    font-weight: 900;
    padding: 5px 8px;
    border-radius: 4px;
}

.prices {
    text-align: right;
}

.old-price {
    font-size: 0.8rem;
    color: #777;
    text-decoration: line-through;
    display: block;
}

.new-price {
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
}

/* Botão */
.full-width-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .game-list-section {
        grid-template-columns: 1fr; /* No celular volta a ser 1 por linha */
        padding: 0 20px;
    }
}

/* ========================================= */
/* PÁGINA CINE CIÊNCIA (ESTILO PRIME VIDEO)  */
/* ========================================= */

.cine-body {
    background-color: #0F171E; /* O Azul/Preto clássico do Prime */
    color: white;
    font-family: 'Roboto', sans-serif;
}

/* --- HERO BANNER (Destaque Topo) --- */
.cine-hero {
    height: 70vh;
    background: url('https://image.tmdb.org/t/p/original/8rpDcsfLJypbO6vREc05475qEv4.jpg') center/cover no-repeat;
    position: relative;
    margin-bottom: 20px;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    /* Degradê para o texto ficar legível e fundir com o site */
    background: linear-gradient(to right, #0F171E 0%, rgba(15,23,30,0.6) 50%, rgba(15,23,30,0) 100%),
                linear-gradient(to top, #0F171E 0%, transparent 100%);
    display: flex;
    align-items: center;
    padding-left: 5%;
}

.cine-hero-content {
    max-width: 600px;
    z-index: 2;
}

.tag-hero {
    color: #00A8E1; /* Azul Prime */
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cine-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 10px 0;
    line-height: 1;
}

.hero-desc {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.5;
}

.hero-buttons { display: flex; gap: 15px; }
.btn-play {
    background-color: #0F79AF; /* Azul Botão */
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
}
.btn-info {
    background-color: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

/* --- PRATELEIRAS (CARROSSEL) --- */
.cine-shelf {
    padding: 20px 5%;
    position: relative;
}

.shelf-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}
.highlight-blue { color: #00A8E1; }

.shelf-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.movie-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.movie-row::-webkit-scrollbar { display: none; }

/* SETAS LATERAIS DO CARROSSEL */
.shelf-arrow {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    height: 100px;
    width: 40px;
    position: absolute;
    z-index: 10;
    cursor: pointer;
    font-size: 2rem;
    opacity: 0; /* Escondido até passar o mouse */
    transition: opacity 0.3s;
}
.shelf-wrapper:hover .shelf-arrow { opacity: 1; }
.shelf-arrow.left { left: 0; }
.shelf-arrow.right { right: 0; }

/* --- CARD DO FILME (Igual ao Print) --- */
.prime-card {
    min-width: 220px;
    max-width: 220px;
    background-color: #1A1D29; /* Fundo do card */
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.2s;
    position: relative;
}

.prime-card:hover {
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* PÔSTER */
.poster-area {
    position: relative;
    height: 330px;
    width: 100%;
}
.poster-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botão "+" no topo esquerdo */
.add-btn {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(30,30,30,0.8);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* INFO ABAIXO */
.movie-info {
    padding: 15px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}
.star-icon { color: #FFA41C; font-size: 0.8rem; } /* Estrela Amarela Amazon */
.rating-num { color: #8197a4; font-size: 0.9rem; font-weight: bold; }

.prime-card h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Botões do Card */
.card-buttons {
    display: flex;
    gap: 10px;
}
.btn-card-trailer {
    flex: 1;
    background: #425265;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    padding: 8px;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
}
.btn-card-trailer:hover { background: #5a6b7c; }

.btn-card-info {
    background: transparent;
    border: 2px solid #425265;
    color: #ccc;
    width: 35px;
    border-radius: 3px;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .cine-hero h1 { font-size: 2.5rem; }
    .prime-card { min-width: 160px; max-width: 160px; }
    .poster-area { height: 240px; }
}

/* ========================================= */
/* PÁGINA DE BLOG (ENGENHARIA FÍSICA)        */
/* ========================================= */

.blog-body {
    background-color: #F4F7F6; /* Fundo cinza bem clarinho (Clean) */
    color: #333;
}

/* --- 1. HERO SECTION (DESTAQUE) --- */
.blog-featured {
    margin-top: 40px;
    background: linear-gradient(135deg, #002D62 0%, #0077B6 100%); /* Degradê Azul Científico */
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: visible; /* Permite a imagem sair um pouco se quiser */
    box-shadow: 0 15px 30px rgba(0,45,98,0.2);
}

.featured-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.featured-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.blog-featured h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.blog-featured p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.featured-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.featured-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); /* Sombra para dar profundidade */
    transform: rotate(5deg); /* Leve inclinação estilosa */
    transition: transform 0.3s;
}

.blog-featured:hover .featured-image img {
    transform: rotate(0deg) scale(1.05);
}

/* --- 2. GRID DE POSTS (CLEAN) --- */
.blog-grid-section {
    padding: 60px 0;
}

.section-title-blog {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 30px;
    font-weight: 700;
    border-left: 5px solid #0077B6;
    padding-left: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* O Cartão do Post */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra suave */
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Imagem do Card com Tag Flutuante */
.blog-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}
.tag-blue { background-color: #0077B6; }
.tag-purple { background-color: #8E2DE2; }
.tag-green { background-color: #10B981; }

/* Texto do Card */
.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Rodapé do Card (Autor e Data) */
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.85rem;
    color: #888;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.author-info img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-featured {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px;
    }
    .featured-image img { margin-bottom: 20px; }
    .featured-meta { justify-content: center; }
}

/* Ajuste para Foto Real no Destaque do Blog */
.real-photo {
    border-radius: 15px; /* Arredonda os cantos da foto */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); /* Sombra forte para destacar do fundo azul */
    border: 2px solid rgba(255,255,255,0.1); /* Borda fina elegante */
    
    /* Removemos a rotação exagerada para fotos reais ficarem mais sérias */
    transform: rotate(-2deg) !important; 
    max-height: 350px;
}

.blog-featured:hover .real-photo {
    transform: rotate(0deg) scale(1.02) !important;
}

/* ========================================= */
/* SEÇÃO TOP 10 (SLIDE DE BOLINHAS)          */
/* ========================================= */

.user-recs-section {
    padding-bottom: 80px;
}

/* Wrapper principal do carrossel */
.user-picks-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 40px; /* Espaço para as setas não ficarem em cima */
}

/* A TRILHA (Onde ficam as bolinhas) */
.user-picks-track {
    display: flex;
    gap: 30px; /* Espaço entre as bolinhas */
    overflow-x: auto; /* Permite rolar */
    scroll-behavior: smooth;
    padding: 20px 10px; /* Espaço para sombras não cortarem */
    
    /* Esconde barra de rolagem */
    scrollbar-width: none;
    -ms-overflow-style: none;
    
    width: 100%;
    /* Importante: Impede que elas quebrem linha, forçando o slide */
    flex-wrap: nowrap; 
}
.user-picks-track::-webkit-scrollbar { display: none; }

/* CADA ITEM (Aumentado!) */
.user-pick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
    
    /* Largura fixa para manter alinhamento */
    flex: 0 0 auto; 
    width: 160px; 
}

.user-pick-item:hover {
    transform: translateY(-10px);
}

/* O CÍRCULO (Agora com 150px) */
.circle-img-wrapper {
    width: 180px;  /* BEM MAIOR AGORA */
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent; /* Borda mais grossa */
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-bottom: 15px;
    background: #222;
    position: relative;
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bolinha de Ranking (1, 2, 3...) */
.rank-badge {
    position: absolute;
    bottom: 0;
    right: 20px;
    background: #FFD700;
    color: #000;
    font-weight: 900;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1A1D29;
    font-size: 1.1rem;
}

/* Hover Dourado */
.user-pick-item:hover .circle-img-wrapper {
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.pick-name {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 5px;
}

/* SETAS DO CARROSSEL DE BOLINHAS */
.pick-arrow {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pick-arrow:hover {
    background: #FFD700;
    color: black;
    transform: scale(1.1);
}
.pick-arrow.left { left: -10px; }
.pick-arrow.right { right: -10px; }


/* AJUSTE NA CAIXA DE TEXTO (Sem limite) */
.review-box {
    /* Altura automática: Cresce o quanto o texto precisar */
    height: auto; 
    min-height: 200px;
}

#review-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.8; /* Mais espaçamento para leitura confortável */
    margin-bottom: 25px;
    
    /* Garante que o texto não corte */
    white-space: pre-line; /* Respeita parágrafos */
}

/* GARANTIA ANTI-BOLA GIGANTE */
.user-avatar-small {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .circle-img-wrapper { width: 110px; height: 110px; } /* Um pouco menor no celular pra caber */
    .pick-arrow { display: none; } /* Usa o dedo no celular */
    .user-picks-carousel-wrapper { padding: 0; }
}