/* --- Variáveis de Cores (Baseado na sua Logo) --- */
:root {
    --primary-color: #FFD700; /* Amarelo Ouro */
    --bg-dark: #121212;       /* Fundo quase preto */
    --bg-card: #1E1E1E;       /* Fundo dos cartões de produto */
    --text-light: #F5F5F5;    /* Texto branco/cinza claro */
    --text-gray: #A0A0A0;     /* Textos secundários */
    --white: #FFFFFF;
}

/* --- Reset Básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; }
ul { list-style: none; }

/* --- Cabeçalho --- */
.header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    border-radius: 5px;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.btn-cta {
    background-color: var(--primary-color);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-cta:hover {
    background-color: #fff;
    transform: scale(1.05);
}

/* --- Seções Gerais --- */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 60px 0 40px;
    color: var(--primary-color);
}

/* --- Grid de Produtos --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

/* --- AJUSTE DE PADRONIZAÇÃO DE IMAGEM --- */
.product-image {
    height: 250px; /* Altura fixa para todos os cartões */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    background: transparent;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Garante que a foto não estique e caiba no espaço */
    transition: opacity 0.3s ease;
}

/* --- SELETOR DE CORES (BOLINHAS) --- */
.color-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0 15px;
    flex-wrap: wrap;
}

.color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.2s;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-dot.selected {
    border: 2px solid var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 8px var(--primary-color);
}

.product-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--white);
}

.price {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-buy {
    background-color: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-buy:hover {
    background-color: #1ebc57;
}

/* --- Benefícios --- */
.benefits {
    background-color: #000;
    padding: 60px 0;
    text-align: center;
}

.benefits-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- Footer Premium --- */
footer {
    background-color: #0a0a0a;
    border-top: 4px solid var(--primary-color);
    padding: 70px 0 30px;
    color: #b0b0b0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { 
    color: #b0b0b0; 
    transition: 0.3s; 
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-column ul li a:hover { 
    color: var(--primary-color); 
    padding-left: 5px; 
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 4px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    margin-top: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    border: 1px solid var(--primary-color);
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.form-group { margin-bottom: 15px; text-align: left; }
.form-group label { display: block; margin-bottom: 5px; color: #fff; }
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #111;
    color: #fff;
    outline: none;
}

/* --- Responsividade --- */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px; left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        padding: 20px 0;
        border-bottom: 2px solid var(--primary-color);
        z-index: 100;
    }

    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; gap: 15px; }
    .mobile-menu-icon { display: block; }

    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* --- Busca --- */
.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}
.search-container i {
    position: absolute;
    left: 15px; top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}
#inputBusca {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border-radius: 30px;
    background: #1e1e1e;
    border: 1px solid #333;
    color: #fff;
    outline: none;
}
#inputBusca:focus { border-color: var(--primary-color); }

.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 40px; right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: 0.3s;
}

/* --- Botão de Envio do Modal (WhatsApp) --- */
.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #25D366; /* Verde oficial WhatsApp */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espaço entre o ícone e o texto */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-submit i {
    font-size: 1.4rem;
}

.btn-submit:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
    transform: scale(0.98); /* Efeito de apertar o botão */
}

/* Ajuste extra para o campo de texto do modal no mobile */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 1rem;
    }
}