/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* =========================================
   ESTILOS GERAIS DO TEMA OTIMIZADO
   ========================================= */
body { margin: 0; font-family: sans-serif; }

/* --- CABEÇALHO --- */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky; /* Menu fica fixo no topo */
    top: 0;
    z-index: 1000;
}

.container-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ajuste da Logo */
.site-logo img {
    max-height: 60px; /* Controla a altura da logo */
    width: auto;
}

/* --- MENU DESKTOP --- */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s;
}

.main-navigation a:hover { color: #0073aa; }

/* --- RODAPÉ --- */
.site-footer {
    background: #2d3748;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3 Colunas responsivas */
    gap: 40px;
}

.footer-col h3 { border-bottom: 2px solid #4a5568; padding-bottom: 10px; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #cbd5e0; text-decoration: none; }
.footer-col a:hover { color: #fff; }

/* --- MOBILE (CELULAR) --- */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: #333; margin: 5px 0; }

@media (max-width: 768px) {
    .menu-toggle { display: block; } /* Mostra o hambúrguer */
    
    .main-navigation {
        display: none; /* Esconde menu padrão */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-navigation.active { display: block; } /* Mostra quando clica */
    
    .main-navigation ul { flex-direction: column; text-align: center; }
}

/* =========================================
   PÁGINA DO PRODUTO (SINGLE CHAPÉU)
   ========================================= */

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

.produto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide a tela em 2 */
    gap: 50px;
}

/* Coluna da Esquerda (Fotos) */
.foto-destaque img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.galeria-miniaturas {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.miniatura {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ddd;
}

/* Coluna da Direita (Infos) */
.produto-ref {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.produto-info h1 {
    font-size: 2.5rem;
    color: #2d3748; /* Cor escura elegante */
    margin: 10px 0;
}

.produto-preco {
    font-size: 1.8rem;
    color: #38a169; /* Verde Suave */
    font-weight: bold;
    margin-bottom: 20px;
}

.produto-detalhes {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d6bcfa; /* Detalhe roxo suave ou mude para bege */
    margin-bottom: 30px;
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366; /* Verde WhatsApp Original */
    color: white;
    padding: 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Responsivo (Celular) */
@media (max-width: 768px) {
    .produto-grid {
        grid-template-columns: 1fr; /* Uma coluna só */
        gap: 20px;
    }
    
    .produto-info h1 { font-size: 2rem; }
}



