@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --cor-principal: #1c1c1c; /* Cinza Escuro - Clássico */
    --cor-secundaria: #bb8031; /* Vermelho Bordeaux - Destaque */
    --cor-fundo: #f4f4f4; /* Cinza Claro */
    --cor-texto: #333;
    --cor-clara: #ffffff;
    --fonte-titulo: 'Playfair Display', serif;
    --fonte-corpo: 'Roboto', sans-serif;
    --font-primary: 'Poppins', sans-serif;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-corpo);
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    line-height: 1.6;
    overflow-x: hidden; /* Evita barras de rolagem horizontais */
}

/* --- NavBar --- */
.navbar {
    background-color: var(--cor-principal);
    color: var(--cor-clara);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--fonte-titulo);
    font-size: 1.8rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li a {
    color: var(--cor-clara);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--cor-secundaria);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--cor-clara);
    border-radius: 3px;
    transition: 0.3s;
}

/* --- Seção "Em Breve" (Hero Section) --- */
.coming-soon {
    background-color: var(--cor-clara);
    text-align: center;
    padding: 6rem 1.5rem;
    border-bottom: 3px solid var(--cor-secundaria);
    min-height: 40vh; /* Altura mínima para ocupar bem a tela */
}

.coming-soon h2 {
    font-family: var(--fonte-titulo);
    font-size: 3.5rem;
    color: var(--cor-principal);
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.launch-message {
    font-weight: 700;
    color: var(--cor-secundaria);
    font-size: 1.5rem !important;
}

/* --- Seção de Produtos --- */
.products-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.products-section h2 {
    text-align: center;
    font-family: var(--fonte-titulo);
    color: var(--cor-principal);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--cor-clara);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* ANIMAÇÃO DE HOVER (INTERATIVIDADE) */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    display: block;
}

.product-card h3 {
    font-family: var(--fonte-titulo);
    color: var(--cor-principal);
    margin: 1rem 0 0.5rem;
    font-size: 1.4rem;
}

.product-card p {
    color: var(--cor-secundaria);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card small.price-note {
    font-size: 0.85rem;
    color: #777;
    display: block;
    padding: 0 1rem;
}

/* --- Newsletter Section --- */
.newsletter-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 1.5rem;
    text-align: center;
    background-color: var(--cor-clara);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.newsletter-section h2 {
    font-family: var(--fonte-titulo);
    color: var(--cor-principal);
    margin-bottom: 1rem;
}

#newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

#email-input {
    padding: 0.8rem;
    width: 60%;
    max-width: 350px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.cta-button {
    background-color: var(--cor-secundaria);
    color: var(--cor-clara);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #a53124;
    transform: translateY(-2px);
}

#form-message {
    margin-top: 1rem;
    font-weight: bold;
    color: green;
}

.hidden {
    display: none;
}

/* --- Rodapé Novo --- */
.footer {
    background-color: var(--cor-principal);
    color: var(--cor-clara);
    padding: 3rem 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.footer-col h4, 
.footer-col h5 {
    font-family: var(--fonte-titulo);
    margin-bottom: 1rem;
    color: var(--cor-secundaria);
    font-size: 1.3rem;
}

.footer-col p {
    margin: 0.3rem 0;
    color: #dadada;
    font-size: 0.95rem;
}

.slogan {
    font-style: italic;
    margin-bottom: 1rem;
}

.copy {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.social-links a {
    display: block;
    color: #e8e8e8;
    text-decoration: none;
    margin: 0.3rem 0;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--cor-secundaria);
}

/* Crédito da agência */
.a2l-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e8e8e8;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.a2l-link:hover {
    color: var(--cor-secundaria);
}

.a2l-logo {
    height: 34px;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.a2l-link:hover .a2l-logo {
    opacity: 1;
}

/* Responsividade */
@media (max-width: 600px) {
    .footer-grid {
        text-align: center;
    }
    .a2l-link {
        justify-content: center;
    }
}


/* --- ANIMAÇÕES (KEYFRAMES E CLASSES) --- */

/* 1. Keyframes de Fade In (entrada suave) */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 2. Keyframes de Fade In Up (entrada de baixo para cima) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classe básica para itens animados (escondidos por padrão) */
.animated-item {
    opacity: 0;
}

/* Aplicação das animações no carregamento */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Atrasos nas animações (para que não apareçam todas de uma vez) */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: var(--cor-principal);
        width: 100%;
        display: none;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid #333;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-links li a {
        padding: 0.8rem;
        display: block;
    }

    /* Animação X do menu */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}