:root {
    /* -------------------- VARIÁVEIS DE COR DA MARCA AURORA ---------------------- */
    /* Cores usadas no código: */
   --header-bg-color: #64720c;/* Exemplo: Verde Musgo Escuro */
    --button-primary-color: #FFA500; /* Exemplo: Laranja Principal */
    --text-dark-color: #050505; /* Texto escuro */
    --text-light-color: #f3e4e4; /* Fundo claro para seções */
    --footer-bg-color: #f1e2e2; /* Cinza claro para footer/introdução */
    --link-color: #4B5320; 
    --primary-font: "Arial", sans-serif;
}

/* -------------------- ESTILOS GERAIS E RESET ---------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    line-height: 1.6;
    background-color: #d3ce92; /* Fundo principal claro */
}

 .logo-container img {
   position: relative;
   top: 60px;
   left: 450px;
    height: 270px !important; 
    
    /* Garante que ocupe toda a largura disponível no contêiner */
    width: auto !important; 
    
    /* Garante que a imagem se ajuste dentro da nova altura sem esticar */
    object-fit: contain; 
}

.top-bar{
height: 120px;

}


/* Header */
header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color:  #64720c;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-scroller {
    width: 100%;
    /* GARANTINDO A COR DE FUNDO */
    background-color: var(--header-bg-color); 
    background-color: #000000;
    color: #fff; /* O texto deve ser branco para contraste */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
    font-size: 0.9rem;
}

.scroller-content {
    display: inline-block;
    padding-right: 100%; /* Permite o loop visual */
    animation: scroll-text 15s linear infinite;
}

.scroller-content span {
    margin-right: 50px;
}

@keyframes scroll-text {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container img {
    height: 60px; /* Ajuste conforme o tamanho do seu logo */
}

.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark-color);
    transition: color 0.3s;
}

.actions button:hover {
    color: var(--button-primary-color);
}
/* Estilos para busca, login e carrinho omitidos para foco */
/* -------------------- ESTILO PARA PÁGINA SOBRE NÓS ---------------------- */

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

/* Título e Introdução */
.secao-introducao {
    text-align: center;
    padding: 40px;
    background-color: var(--footer-bg-color); 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
.secao-introducao h1 {
    font-size: 2.8rem;
    color: var(--button-primary-color);
    margin-bottom: 15px;
    /* Certifique-se que a fonte "Rowdies" esteja linkada no seu HTML */
    font-family: "Rowdies", sans-serif; 
}
.secao-introducao p {
    font-size: 1.2rem;
    color: var(--text-dark-color);
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 15px;
}

/* Bloco da Foto Pessoal */
.secao-foto-pessoal {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--text-light-color); 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.secao-foto-pessoal img {
    max-width: 400px; 
    width: 100%; 
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); 
    margin-bottom: 15px;
    object-fit: cover; 
    max-height: 400px; 
}

.secao-foto-pessoal .legenda-foto {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

/* Bloco de História e MVV (Missão, Visão, Valores) - Regras de flexbox/grid */
.bloco-historia {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.historia-imagem {
    flex: 1;
    min-width: 40%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.historia-texto {
    flex: 1.5;
    line-height: 1.7;
}
.historia-texto h2, .mvv-container h2 {
    color: var(--header-bg-color);
    font-family: "Rowdies", sans-serif;
}

.cards-mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-mvv {
    background-color: var(--text-light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}
.card-mvv i {
    color: var(--button-primary-color);
    font-size: 2.5rem;
}

/* Regras de responsividade omitidas para focar na correção, mas devem ser mantidas */

/* -------------------- BOTÕES FLUTUANTES (WHATSAPP) ---------------------- */

/* Container que posiciona todos os botões no canto (usei apenas o WhatsApp no HTML final) */
.botoes-flutuantes-container {
    position: fixed;
    bottom: 25px; 
    right: 25px; 
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

/* Estilos de base para o botão flutuante */
.whatsapp-flutuante {
    background-color: #25d366; 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-flutuante:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* -------------------- BOTÃO/LINK INLINE INSTAGRAM (Colorido no Footer) ---------------------- */

.btn-instagram-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--button-primary-color); 
    color: var(--text-light-color); 
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    border: 2px solid var(--button-primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.btn-instagram-inline:hover {
    background-color: var(--header-bg-color); 
    color: white; 
    border-color: var(--header-bg-color);
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Efeito Gradiente Colorido APENAS no Ícone */
.btn-instagram-inline i {
    font-size: 1.3rem;
    background-image: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; 
}

/* -------------------- ESTILO DO FOOTER ---------------------- */
footer {
    background-color: var(--header-bg-color);
    color: white;
    padding-top: 40px;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex-basis: 22%; /* Define uma base para colunas */
    min-width: 200px; /* Garante que não fiquem muito estreitas */
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--button-primary-color);
    text-transform: uppercase;
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--button-primary-color);
}

.footer-bottom-bar {
    text-align: center;
    padding: 15px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.footer-bottom-bar p {
    margin: 5px 0;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-container {
        justify-content: flex-start;
        padding-left: 5%;
    }
    .footer-col {
        flex-basis: 45%;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    /* 1. GARANTE QUE O CONTÊINER DO LOGO É VISÍVEL */
    .logo-container {
        /* Sobrescreve qualquer regra de esconder */
        display: block !important; 
        /* Garante que ocupe o espaço necessário para o alinhamento */
        flex-basis: 50%;
        min-width: 150px;
    }

    /* 2. GARANTE QUE A IMAGEM EM SI É VISÍVEL E TEM UM TAMANHO */
    .logo-container img {
        /* Sobrescreve qualquer display: none; */
        display: block !important; 
        /* Define a altura definitiva para mobile */
        height: 65px !important; 
        width: auto !important; 
        /* Otimiza a renderização */
        max-width: 100%;
        opacity: 1 !important; 
    }
    
    /* 3. Ajuste do topo da barra, caso esteja muito espremida */
    .top-bar {
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
        /* Garante que a busca não esmague o logo no topo */
        flex-wrap: wrap; 
    }
    
    /* Opcional: Se a busca estiver empurrando o logo */
    .actions {
        /* Permite que os botões de busca/carrinho quebrem linha, se necessário */
        flex-basis: auto;
    }
}

