/* --- RESET E FONTES --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* --- HEADER / MENU --- */
.tarja-preta {
    width: 100%;
    height: 35px;
    background-color: #AC9362;
    color: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-size: 11px;
    letter-spacing: 1px;
    z-index: 10;
}

.texto-correndo {
    position: absolute;
    white-space: nowrap;
    animation: moverTexto 20s linear infinite;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

@keyframes moverTexto {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.bandeiras-container {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 35px;
    display: flex;
    gap: 10px;
}
.bandeira-img { opacity: 0.1; transition: 0.3s; color: #fff; }
.bandeira-img.ativa { opacity: 1; color: #AC9362; }

.menu-principal {
    background-color: #fff;
    width: 100%;
    height: 70px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.menu-container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-principal-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links { list-style: none; display: flex; gap: 30px; }

.nav-links li a {
    text-decoration: none;
    color: rgb(170, 40, 40);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: 0.3s;
    font-family: 'Oswald', sans-serif;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: rgb(170, 40, 40);
    transition: width 0.3s;
}

.nav-links li a:hover::after { width: 100%; }
.link-destaque { color: #ffbaba !important; }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a, .nav-icons button { color: rgb(170, 40, 40); font-size: 18px; text-decoration: none; background: none; border: none; cursor: pointer; }

.mobile-menu-btn { display: none; }
.mobile-nav { display: none; flex-direction: column; background-color: #AC9362; position: absolute; top: 70px; left: 0; width: 100%; padding: 20px 0; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.2); z-index: 1001;}
.mobile-nav a { color: rgb(170, 40, 40); text-decoration: none; padding: 15px; text-transform: uppercase; font-weight: bold; border-bottom: 1px solid rgba(255,255,255,0.1); }


/* --- NOVO BANNER DESTAQUE (CONFIGURAÇÃO PROFISSIONAL) --- */
.banner-destaque {
    background-color: #050505;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
    height: 85vh; /* Altura ideal para telas de computador */
    min-height: 600px;
    align-items: center;
}

.banner-lado-texto {
    flex: 1; /* Ocupa metade da tela */
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza o texto verticalmente */
    padding-left: 10%; 
    padding-right: 2%;
}

.banner-lado-foto {
    flex: 1.3; /* A foto ocupa um pouco mais da metade */
    position: relative;
    height: 100%;
    background-color: #050505;
    min-width: 300px;
}

.foto-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    /* ATENÇÃO: COLOQUE AQUI O NOME DA SUA FOTO CORRETA */
    background-image: url('./img/SUA_FOTO_NOVA.jpg'); 
    background-size: cover; /* Preenche o espaço todo */
    background-position: center bottom; /* Foca na parte de baixo da imagem */
    background-repeat: no-repeat;
}

/* O Fade Lateral (Desktop) */
.fade-overlay {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 30%; /* Reduzido para não cobrir tanto a imagem */
    background: linear-gradient(to right, #050505 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}


/* --- LAYOUT GERAL --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
}

.titulo-secao {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-transform: uppercase;
    color: #111;
    border-left: 5px solid #720e1e;
    padding-left: 10px;
}

/* --- SWIPERS (GERAL) --- */
.swiper {
    width: 100%;
    padding-bottom: 40px;
}

/* --- ESTILO DOS CARDS DE PRODUTO --- */
.product-slide {
    height: auto;
    background: transparent;
}

.product-card {
    display: block;
    text-decoration: none;
    color: #333;
    background: white;
    border: 1px solid #eee;
    transition: 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #ccc;
}

.img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f4f4f4;
    position: relative;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .img-container img {
    transform: scale(1.05);
}

.product-info { padding: 15px; text-align: center; }

.product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-info p {
    color: #720e1e;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}

.btn-comprar {
    display: inline-block;
    padding: 8px 20px;
    background-color: #111;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

/* --- SETAS DO SWIPER --- */
.swiper-button-next, .swiper-button-prev {
    color: #000 !important;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}


/* --- ARTISTAS (LOGOS) --- */
.artistSwiper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
}

.artistSwiper .swiper-slide {
    height: 180px; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #f0f0f0;
}

.artistSwiper .swiper-slide a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.artistSwiper .swiper-slide img {
    width: 80%;
    height: 80%;
    object-fit: contain; 
    transition: transform 0.3s ease;
}

.artistSwiper .swiper-slide:hover img {
    transform: scale(1.1);
}

/* --- CATEGORIAS --- */
.galeria-circulos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 80%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.circulo {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circulo a {
    display: block;
    width: 100%;
    height: 100%;
}

.circulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    display: block;
    transition: transform 0.5s ease;
}

.circulo:hover {
    transform: translateY(-5px);
    border-color: #AC9362;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.circulo:hover img {
    transform: scale(1.05);
}

.circulo.ver-todos {
    border: 1px solid #AC9362; 
}

.circulo.ver-todos a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: transparent;
    color: #111;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.circulo.ver-todos:hover a {
    background-color: #AC9362;
    color: #fff;
}


/* --- RODAPÉ --- */
footer {
    width: 100%;
    background-color: #050505;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

.qtd-controle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    background: #f9f9f9;
    padding: 3px;
    border-radius: 4px;
    width: fit-content;
    border: 1px solid #eee;
}

.btn-qtd {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-qtd:hover {
    background: #AC9362;
    color: #fff;
    border-color: #AC9362;
}

.qtd-valor {
    font-size: 13px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

.input-cartao {
    display: flex;
    align-items: center;
    background: #fff;
    min-height: 45px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px; 
}

.footer-logo-img {
    height: 70px; 
    width: auto;
    object-fit: contain;
}

.logo-voltar {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    transition: 0.3s;
}

.texto-voltar {
    font-size: 12px;
    color: #999;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.logo-voltar:hover .texto-voltar {
    color: #AC9362;
    transform: translateY(2px);
}

.logo-voltar:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}

.footer-subtext {
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 8px;
    margin-left: 15px;
    opacity: 0.7;
    margin-top: -10px;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: #ccc; font-size: 18px; transition: 0.3s; text-decoration: none; }
.footer-socials a:hover { color: #fff; transform: translateY(-3px); }
.footer-center p { margin: 0; text-transform: uppercase; color: #666; }

.footer-right a { color: #aaa; text-decoration: none; text-transform: uppercase; font-weight: bold; transition: 0.3s; }
.footer-right a:hover { color: #fff; }


/* --- RESPONSIVIDADE (MOBILE E TABLET) --- */
@media (max-width: 768px) {
    /* Header */
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; font-size: 24px; color: white;}
    .logo-principal-img { height: 40px; }
    
    /* --- CORREÇÃO DO BANNER NO CELULAR --- */
    .banner-destaque {
        flex-direction: column; /* Coloca um item embaixo do outro */
        height: auto !important; /* Altura livre para caber tudo */
        min-height: auto;
        padding-bottom: 0;
    }

    .banner-destaque > div:nth-child(1) {
            padding-top: 40px !important;
            padding-bottom: 10px !important; /* Espaço menor entre texto e foto */
        }


    .banner-destaque > div:nth-child(2) {
            height: 480px !important; /* Um pouco mais alto para a foto respirar */
            width: 100% !important;
            flex: none !important;
        }

    .banner-destaque > div:nth-child(2) > div:nth-child(1) {
            background-size: contain !important;
            /* MUDANÇA CHAVE: 'center bottom' faz ele pisar no chão */
            background-position: center bottom !important; 
            background-repeat: no-repeat !important;
            background-color: #050505;
            height: 100% !important;
        }

    .banner-destaque > div:nth-child(2) > div:nth-child(2) {
            width: 100% !important;
            height: 120px !important; /* Altura do fade */
            top: 0 !important;
            background: linear-gradient(to bottom, #050505 10%, transparent 100%) !important;
        }

    .banner-destaque > div:nth-child(2) > div:nth-child(3) {
            display: none !important;
        }

    .banner-lado-texto {
        width: 100%; 
        padding: 60px 20px 40px 20px; 
        text-align: center; /* Centraliza o texto */
        align-items: center; /* Centraliza o botão */
        background-color: #050505;
        flex: none; 
    }

    /* Ajuste de fontes no mobile */
    .banner-lado-texto h2 { margin-bottom: 15px; }
    .banner-lado-texto h2 span:first-child { font-size: 1.5rem !important; }
    .banner-lado-texto h2 span:last-child { font-size: 3.5rem !important; }
    .banner-lado-texto p { font-size: 14px; max-width: 100%; }

    .banner-lado-foto {
        width: 100%; 
        height: 450px; /* Altura FIXA obrigatória para a foto aparecer */
        flex: none; 
    }

    .foto-bg {
        background-size: cover; /* Garante que a foto preencha o espaço */
        background-position: center top; /* Foca mais no topo da imagem */
    }

    /* O Fade agora vem de cima para baixo */
    .fade-overlay {
        width: 100%;
        height: 100px;
        top: 0;
        left: 0;
        background: linear-gradient(to bottom, #050505 0%, transparent 100%);
    }

    /* Outros Ajustes Mobile */
    .artistSwiper { width: 100%; }
    .galeria-circulos { grid-template-columns: repeat(2, 1fr); gap: 15px; width: 90%; }
    .swiper-button-next, .swiper-button-prev { display: none; }
    
    /* Footer Mobile */
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
    .footer-left { align-items: center; }
}