* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f7; /* Cinza claro estilo Apple */
    font-family: 'Montserrat', sans-serif;
    color: #1d1d1f;
}

/* --- 2. HEADER (TOPO) --- */
#header {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #000000;
    padding-bottom: 15px;
    z-index: 999;
    position: relative;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    gap: 30px;
}

/* --- BANNER STEVE MOBILE (TELA INTEIRA, SEM LATERAIS PRETAS) --- */
.banner-steve-gigante {
    width: 100% !important;
    display: block !important;
    padding-bottom: 35px !important; /* Espaço seguro embaixo para as bolinhas */
    overflow: hidden !important;
}

.banner-steve-gigante a {
    display: block !important;
    width: 100% !important;
}

.banner-steve-gigante img {
    width: 100% !important;
    max-width: 100% !important; /* Destrói a trava de 900px de vez */
    min-height: 550px !important; /* Altura do banner no PC */
    
    /* Preenche os buracos pretos e trava no centro */
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    
    /* O Fade esfumaçado no fundo */
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%) !important;
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%) !important;
    
    /* O Zoom de 5% que joga as estrelinhas de IA para fora da tela */
    transform: scale(1.05) !important; 
}

/* --- Ajuste para o Celular --- */
@media (max-width: 768px) {
    .banner-steve-gigante img {
        min-height: 350px !important; 
    }
}

/* --- NOVOS LOGOS NO HEADER (STEVE JOBS & STEVE MOBILE) --- */
/* --- NOVOS LOGOS NO HEADER (STEVE JOBS & STEVE MOBILE) - CORRIGIDO --- */

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px; 
    height: 60px; /* Aumentei a altura geral para as logos terem mais espaço */
}

/* O traço que divide as duas marcas */
.logo-divisor {
    color: #555555; 
    font-size: 26px;
    font-weight: 300;
    margin-top: -3px; /* Centraliza a barrinha com os textos */
}

/* A moldura (esconde tudo que passar do tamanho dela) */
.logo-wrapper {
    height: 55px; /* Altura visível da moldura */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Isso é o que corta as bordas brancas e a estrela */
}

/* 1. Steve Jobs Imports */
.box-ste {
    width: 160px; /* Largura da moldura */
}
.box-ste img {
    width: 200px; /* A imagem é um pouco maior que a moldura (corta as laterais brancas) */
    max-width: none !important;
    height: auto;
}

/* 2. Steve Mobile */
.box-mobile {
    width: 180px; /* Largura da moldura */
}
.box-mobile img {
    width: 240px; /* A imagem é maior que a moldura (o texto fica no meio, e a estrela embaixo é cortada) */
    max-width: none !important;
    height: auto;
}

/* --- AJUSTE PARA CABER PERFEITO NO CELULAR --- */
@media (max-width: 768px) {
    .logo-container { 
        gap: 10px; 
        height: 50px; 
    }
    
    .logo-wrapper { 
        height: 45px; 
    }
    
    .logo-divisor { 
        font-size: 22px; 
    }
    
    .box-ste { width: 120px; }
    .box-ste img { width: 150px; }
    
    .box-mobile { width: 135px; }
    .box-mobile img { width: 180px; }
}

/* --- MENU DROPDOWN (Estilo iPlace/Apple) --- */
.dropdown-menu {
    position: relative;
    display: inline-block;
    height: 100%;
}

.btn-categoria {
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none; /* Escondido por padrão */
    position: absolute;
    background-color: #ffffff; /* Fundo branco */
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 12px;
    top: 31px;
    left: -20px;
    padding: 10px 0;
}

/* Botões dentro do menu */
.dropdown-content button {
    color: #000000;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.dropdown-content button:hover {
    background-color: #f5f5f7; /* Cinza claro ao passar o mouse */
    color: #0071e3; /* Azul Apple */
}

/* A mágica: Mostrar ao passar o mouse */
.dropdown-menu:hover .dropdown-content {
    display: block;
}

/* Barra de Busca */
.search-box {
    display: flex;
    flex-grow: 1;
    max-width: 500px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* --- CORREÇÃO DA BARRA DE PESQUISA NO CELULAR --- */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column; /* Coloca a barra de pesquisa embaixo das logos */
        gap: 15px;
        padding: 15px;
    }
    
    .search-box {
        width: 100%; /* Força a barra a ocupar a tela toda */
        max-width: 100%; 
    }
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.search-btn {
    background-color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-box #search-icon {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

/* Menu de Links */
.header-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}

.header-bottom a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    transition: 0.3s;
}

.header-bottom a:hover {
    color: #ffffff;
}

.btn-hero-gold {
    /* Degradê Dourado */
    background: linear-gradient(to bottom, #f3c57a 0%, #dfa54e 100%);
    color: #3e2b14; /* Cor do texto marrom escuro para contraste */
    padding: 14px 35px; /* Um pouco maior */
    border-radius: 980px; /* Redondo estilo pílula */
    text-decoration: none;
    font-weight: 700; /* Negrito */
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #f8dca8; /* Borda sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra para destacar */
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-hero-gold:hover {
    transform: translateY(-3px); /* Sobe um pouquinho ao passar o mouse */
    box-shadow: 0 8px 25px rgba(223, 165, 78, 0.6); /* Sombra dourada mais forte */
    background: linear-gradient(to bottom, #ffe2b3 0%, #eac276 100%); /* Fica mais claro */
    color: #000;
}

/* 2. Forçar a Imagem a ocupar 100% da largura */
/* Usamos !important para garantir que sobrescreva o limite de 900px anterior */
.banner-carnaval-full {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
    /* Removi a máscara de fade preta, pois a imagem já tem um chão bonito.
       Se quiser o fade de volta, descomente as linhas abaixo: */
    /* mask-image: linear-gradient(to bottom, black 85%, transparent 100%); */
    /* -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%); */
}

/* Ajuste para centralizar o botão embaixo da imagem */
.hero-carnaval-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.button-container-carnaval {
    margin-top: -80px; /* Puxa o botão para cima, para ficar "dentro" da área da imagem */
    margin-bottom: 60px;
    z-index: 10; /* Garante que o botão fique por cima da imagem */
    position: relative;
}

/* Em telas menores (celular), o botão não deve subir tanto */
@media (max-width: 768px) {
    .button-container-carnaval {
        margin-top: -40px;
        margin-bottom: 40px;
    }
}

/* Força o slider a encostar no menu e ter fundo preto atrás das imagens */
.apple-hero-slider {
    background-color: #000000; /* Garante que se houver falha, o fundo seja preto */
    margin-top: -2px; /* Puxa o slider para CIMA, cobrindo a linha branca */
    padding-top: 0 !important;
    position: relative;
    z-index: 1; /* Garante que fique logo abaixo do menu */
    display: block;
    width: 100%;
}

/* --- CORREÇÃO DO BANNER PEQUENO --- */
/* Classe específica para o slide do PayDay ocupar tudo */
.banner-full-width {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}

.banner-full-width img {
    width: 100%;
    height: 100%;
    min-height: 300px; /* Garante que não fique uma tripa fina no PC */
    object-fit: cover; /* Cobre a área sem esticar/deformar */
    display: block;
}

/* --- CORREÇÃO DE LARGURA TOTAL (PAYDAY) --- */

/* Remove a trava de largura e centralização do container */
.hero-image-box.full-width-mode {
    width: 100% !important;
    max-width: 100% !important; /* O segredo: remove o limite de 900px */
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* Força a imagem a esticar de ponta a ponta */
.hero-image-box.full-width-mode img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important; /* Mantém a proporção correta */
    display: block !important;
    object-fit: cover !important; /* Cobre todo o espaço */
    border-radius: 0 !important; /* Remove arredondamento se houver */
}


/* Remove margens extras da main */
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Garante que as imagens não criem espaço em branco embaixo */
.hero-image-box img, 
.banner-carnaval-full {
    display: block; /* Remove o comportamento de texto da imagem */
    vertical-align: bottom;
}

/* --- 3. HERO SECTION (ESTILO APPLE) --- */
.apple-hero {
    background-color: #000000;
    color: #f5f5f7;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 0;
    width: 100%;
    overflow: hidden;
}

.apple-hero-slider .hero-content {
    text-align: center;
    padding-top: 40px;
    margin-bottom: 20px;
}

.apple-hero-slider .hero-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px; /* Altura fixa para a imagem não pular */
}

/* Garante que a imagem caiba sem esticar */
.apple-hero-slider img {
    object-fit: contain;
    height: 100%;
}

.hero-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #b4b4b4;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background-color: #0071e3;
    color: white;
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.btn-hero-secondary {
    color: #0486ff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.2s;
}

.btn-hero-secondary:hover {
    text-decoration: underline;
    transform: scale(1.1);
}

.hero-image-box {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-image-box img {
    width: 100%;
    max-width: 900px;
    height: auto;
    /* Efeito de fade para a imagem se misturar com o preto no final */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* --- BANNER DE CARNAVAL - VERSÃO MELHORADA --- */

/* Container principal do slide do carnaval */
.slide-carnaval {
    background-color: #000; /* Fundo preto para combinar com a imagem */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 600px; /* Altura mínima adequada */
}

/* --- CORREÇÃO DA TRANSPARÊNCIA --- */
.hero-image-box img {
    width: 100%;
    max-width: 900px; /* Mantém limite apenas para os iPhones, o banner usa outra classe */
    height: auto;
    
    /* REMOVI AS LINHAS DE MASK-IMAGE QUE CAUSAVAM O FADE */
    border-radius: 0; /* Garante cantos retos se preferir */
}

/* --- AJUSTES FINAIS DE RESPONSIVIDADE --- */

/* Regra específica para o banner FULL WIDTH (PayDay) */
.hero-image-box.full-width-mode img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    
    /* No computador, altura automática ou fixa */
    min-height: 400px; 
    object-fit: cover !important; /* Cobre o espaço sem distorcer */
    
    /* REMOÇÃO TOTAL DA MÁSCARA/FADE AQUI TAMBÉM POR GARANTIA */
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* --- VERSÃO MOBILE (CELULAR) --- */
@media (max-width: 768px) {
    
    /* Aumenta a altura mínima no celular para o banner ter destaque */
    .hero-image-box.full-width-mode img {
        min-height: 250px; /* Altura mínima garantida no celular */
        object-fit: cover; /* Garante que preencha tudo */
        object-position: center; /* Centraliza a imagem (rosto do Steve Jobs) */
    }

    /* Ajuste para o texto não ficar colado ou sumir */
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 36px; /* Texto menor no celular */
    }
}

/* Ajuste para a imagem do carnaval */
.slide-carnaval .hero-image-box {
    width: 100%;
    max-width: none;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center; /* Centraliza a imagem */
    margin: 0;
    padding: 0;
    position: relative;
}

/* Imagem do carnaval ajustada - SEM CORTES */
.slide-carnaval .banner-carnaval-full {
    width: 100%;
    max-width: 1400px; /* Limite máximo para não esticar demais */
    height: auto; /* Mantém proporção original */
    display: block;
    object-fit: contain; /* MOSTRA A IMAGEM COMPLETA, SEM CORTAR */
    margin: 0 auto;
}

/* Container do botão - POSICIONADO FORA DA IMAGEM */
.slide-carnaval .button-container-carnaval {
    margin-top: 20px; /* ESPAÇO ABAIXO DA IMAGEM */
    margin-bottom: 60px;
    z-index: 10;
    position: relative;
    text-align: center;
    background-color: transparent; /* Fundo transparente */
}

/* Ajuste para o botão dourado */
.slide-carnaval .btn-hero-gold {
    background: linear-gradient(to bottom, #f3c57a 0%, #dfa54e 100%);
    color: #3e2b14;
    padding: 16px 40px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    border: 1px solid #f8dca8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.slide-carnaval .btn-hero-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(223, 165, 78, 0.7);
    background: linear-gradient(to bottom, #ffe2b3 0%, #eac276 100%);
    color: #000;
}



/* Garantir que o slider não tenha padding extra */
.apple-hero-slider {
    position: relative;
    max-width: 100%;
    margin: auto;
    background-color: #000;
    padding-top: 0; /* SEM PADDING TOP */
    overflow: visible; /* Permite que o conteúdo seja visto */
    min-height: auto;
}

/* Ajuste específico para o slide do carnaval */
#slide-carnaval .mySlides {
    background-color: #000; /* Fundo preto para combinar */
}

/* Ajustes responsivos */
@media (max-width: 1200px) {
    .slide-carnaval .banner-carnaval-full {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .slide-carnaval {
        min-height: 500px;
    }
    
    .slide-carnaval .banner-carnaval-full {
        width: 100%;
        height: auto;
    }
    
    .slide-carnaval .button-container-carnaval {
        margin-top: 15px;
        margin-bottom: 40px;
    }
    
    .slide-carnaval .btn-hero-gold {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slide-carnaval {
        min-height: 400px;
    }
    
    .slide-carnaval .button-container-carnaval {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    
    .slide-carnaval .btn-hero-gold {
        padding: 12px 25px;
        font-size: 14px;
    }
}
/* Esconde os slides por padrão (o JS vai mostrar um por vez) */
.mySlides {
    display: none;
    width: 100%;
}

/* Animação de FADE (Aparecer suave) */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Bolinhas de navegação */
.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #000000;
}
/* --- ESTILO DOS BOTÕES DE COR --- */
.btn-cor {
    width: 25px;     /* Tamanho da bolinha */
    height: 25px;
    border-radius: 50%; /* Faz ficar redondo */
    border: 1px solid #ccc; /* Borda fininha */
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-cor:hover {
    transform: scale(1.1); /* Aumenta um pouco ao passar o mouse */
    border: 1px solid #000;
}


/* --- 4. VITRINE DE PRODUTOS --- */
.section-produtos {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.titulo-vitrine {
    font-size: 32px;
    color: #1d1d1f;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

.grade-produtos {
    display: grid;
    /* Cards responsivos */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* O CARD LIMPO */
.card-produto {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    text-align: center;
    padding: 35px 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-produto:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-produto img {
    border-radius: 4px;
}

.selo-popular {
    position: absolute; /* Flutua por cima de tudo */
    top: 15px;          /* Distância do topo */
    left: 15px;         /* Distância da esquerda */
    background-color: #ff3b30; /* Vermelho "Hot" da Apple */
    color: white;
    padding: 6px 12px;
    border-radius: 20px; /* Formato de pílula */
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase; /* Letras maiúsculas */
    letter-spacing: 0.5px;
    z-index: 10;        /* Garante que fique em cima da foto */
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3); /* Sombra suave vermelha */
}

/* Opção 2: Selo Azul para "Novo" */
.selo-novo {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0071e3; /* Azul Apple */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.selo-destaque {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(to right, #f3c57a, #dfa54e); /* Degradê dourado */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 710;
    text-transform: uppercase;
    z-index: 10;
}

.selo-lancamento {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(to right, #00eeff, #aa04f7); /* Verde Apple */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.selo-ia {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(to right, #000000, #0025fa); /* Degradê laranja */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}


.img-container {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.titulo-produto {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
    min-height: 50px;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(to right, #02e245, #00bfa5); /* Degradê verde */
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #0e757c;
}