/* =========================================
   1. RESET E CONFIGURAÇÕES GERAIS
   ========================================= */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: white;
}

/* =========================================
   2. SEÇÃO PRINCIPAL (HERO)
   ========================================= */
.hero {
    height: 100vh;
    width: 100%;
    /* Fundo escuro com a imagem */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('assets/dsds.png') no-repeat center center/cover;
    
    /* Flexbox para centralizar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative; 
}

/* =========================================
   3. ESTILO DOS BOTÕES (LISTA)
   ========================================= */
.lista-lojas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-loja {
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: 0.3s;
    border-radius: 4px;
    white-space: nowrap;
}

.btn-loja:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
}

/* =========================================
   4. COMPORTAMENTOS ESPECÍFICOS (PC vs CELULAR)
   ========================================= */

/* --- PC (Telas Grandes) --- */
@media (min-width: 769px) {
    .menu-lojas {
        position: absolute;
        top: 40px;
        width: 100%;
        z-index: 10;
    }
}

/* --- CELULAR (Telas Pequenas) --- */
@media (max-width: 768px) {
    
    /* --- CONFIGURAÇÃO DO CELULAR --- */
    
    /* 1. TÍTULO VIRA HEADER */
    .hero-content {
        position: absolute;
        top: 30px;
        width: 100%;
        padding: 0 20px;
        z-index: 10;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        letter-spacing: 2px;
        font-weight: 600;
    }

    /* 2. MENU VIRA LISTA NO CENTRO */
    .menu-lojas {
        position: static;
        width: 100%;
        padding: 0 40px;
        margin-top: 50px;
    }

    .lista-lojas {
        flex-direction: column; 
        gap: 15px;
    }

    .btn-loja {
        text-align: center;
        width: 100%;
        padding: 15px;
        font-size: 0.9rem;
    }

    /* 3. ÍCONES COLORIDOS APENAS NO CELULAR (MOVI PARA CÁ) */
    .social-links a:nth-child(1) {
        color: #25d366 !important; /* Verde */
        opacity: 1;
    }

    .social-links a:nth-child(2) {
        color: #E1306C !important; /* Rosa */
        opacity: 1;
    }
    
    .social-links a {
        font-size: 2.2rem; 
    }
} 


/* =========================================
   5. RODAPÉ (FOOTER) - GLOBAL
   ========================================= */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
    z-index: 999;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover (Só funciona no PC, pois celular não tem mouse) */
.social-links a:hover {
    color: #25d366; 
    transform: scale(1.1);
}

.social-links a:nth-child(2):hover {
    color: #E1306C;
}

footer p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* =========================================
   CORES DAS LOJAS (BRANDING)
   ========================================= */

/* Mercado Livre (Amarelo com texto Azul Escuro) */
.btn-loja.ml {
    background-color: #ffe600;
    border-color: #ffe600;
    color: #2d3277; /* Azul da marca */
    font-weight: 700; /* Negrito para destacar */
}

/* Amazon (Preto com Texto Laranja - Estilo Dark Mode) */
.btn-loja.amz {
    background-color: #232f3e;
    border-color: #ff9900;
    color: #ff9900; /* O Laranja famoso */
    font-weight: 700;
}

/* Magazine Luiza (Azul Magalu) */
.btn-loja.mag {
    background-color: #0086ff;
    border-color: #0086ff;
    color: white;
    font-weight: 600;
}

/* Shopee (Laranja Avermelhado) */
.btn-loja.shp {
    background-color: #ee4d2d;
    border-color: #ee4d2d;
    color: white;
    font-weight: 600;
}

/* Efeito ao passar o mouse (Hover) para todos */
.btn-loja.ml:hover, 
.btn-loja.amz:hover, 
.btn-loja.mag:hover, 
.btn-loja.shp:hover {
    filter: brightness(1.2); /* Deixa a cor um pouco mais brilhante */
    transform: scale(1.05);  /* Aumenta levemente */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* Brilho em volta */
    color: inherit; /* Mantém a cor do texto original */
}






/* --- PADRÃO (PC): Esconde a logo, mostra o texto --- */
.logo-mobile {
    display: none; /* Logo invisível no PC */
}

.titulo-desktop {
    display: block; /* Texto visível no PC */
}

/* --- CELULAR (Adicione ou edite dentro do seu @media existente) --- */
@media (max-width: 768px) {
    
    /* 1. Esconde o Texto no celular */
    .titulo-desktop {
        display: none;
    }

    /* 2. Mostra a Logo no celular */
    .logo-mobile {
        display: block;
        max-width: 150px; /* Tamanho da logo (ajuste conforme necessário) */
        height: auto;     /* Mantém a proporção */
        margin: 0 auto;   /* Centraliza */
        
        /* Opcional: Se sua logo for preta e o fundo escuro, 
           use esse filtro para deixá-la branca: */
        /* filter: brightness(0) invert(1); */
    }

    /* Ajuste de posicionamento do container no topo */
    .hero-content {
        top: 20px; /* Um pouco mais perto do topo para a logo caber bem */
    }
}