/* ==================== IMPORTAÇÃO DE FONTES ==================== */
/* Importar fontes do Google Fonts para melhor estética */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@700&family=Lato:wght@300;400;700&display=swap');

/* ==================== VARIÁVEIS CSS ==================== */
/* Definir variáveis de cores para fácil manutenção e personalização */
:root {
    /* Paleta de cores principais */
    --marrom-escuro: #6b4423;      /* Chocolate escuro */
    --marrom-medio: #8b5a3c;       /* Marrom chocolate */
    --marrom-claro: #a67c52;       /* Marrom mais claro */
    --bege: #f5e6d3;               /* Bege/Creme base */
    --bege-escuro: #e8d7c3;        /* Bege mais escuro */
    --rosa-claro: #f4a1b8;         /* Rosa delicado */
    --rosa-muito-claro: #fce8f0;   /* Rosa bem claro */
    --branco: #fefdfb;             /* Branco quente */
    --texto-escuro: #3d2817;       /* Texto escuro */
    
    /* Fontes */
    --fonte-titulo: 'Great Vibes', cursive;              /* Cursiva elegante para títulos */
    --fonte-titulo-secundaria: 'Playfair Display', serif; /* Serif elegante */
    --fonte-corpo: 'Lato', sans-serif;                   /* Sans-serif moderna */
    
    /* Tamanhos */
    --espacamento-base: 1.5rem;
    --raio-borda: 12px;
    --sombra-suave: 0 4px 15px rgba(107, 68, 35, 0.1);
    --sombra-forte: 0 8px 25px rgba(107, 68, 35, 0.2);
}

/* ==================== RESET E ESTILOS GLOBAIS ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Scroll suave no site */
}

body {
    font-family: var(--fonte-corpo);
    background-color: var(--branco);
    color: var(--texto-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container padrão para organizar conteúdo */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== HEADER E NAVEGAÇÃO ==================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--marrom-escuro) 0%, var(--marrom-medio) 100%);
    box-shadow: var(--sombra-forte);
    z-index: 1000;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo h1 {
    font-family: var(--fonte-titulo);
    font-size: 2rem;
    color: var(--rosa-claro);
    font-weight: 400;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-family: var(--fonte-corpo);
    font-size: 0.75rem;
    color: var(--bege);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--rosa-claro);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Responsividade do header */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .navbar-logo h1 {
        font-size: 1.5rem;
    }
}

/* ==================== SEÇÃO HERO ==================== */
.hero {
    background: linear-gradient(135deg, #D4A574 0%, var(--marrom-claro) 50%, var(--marrom-medio) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Decoração de fundo */
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(244, 161, 184, 0.1);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(244, 161, 184, 0.05);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--fonte-titulo);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    background: var(--rosa-claro);
    color: var(--texto-escuro);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: var(--raio-borda);
    cursor: pointer;
    font-weight: 700;
    font-family: var(--fonte-corpo);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(244, 161, 184, 0.4);
}

.cta-button:hover {
    background: #f28a9b;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 161, 184, 0.6);
}

/* Responsividade do hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ==================== TÍTULOS DE SEÇÃO ==================== */
.section-title {
    font-family: var(--fonte-titulo-secundaria);
    font-size: 2.5rem;
    text-align: center;
    color: var(--marrom-escuro);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Decoração sob título */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--rosa-claro), transparent);
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--marrom-medio);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

/* ==================== SEÇÃO SOBRE NÓS ==================== */
.sobre {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--rosa-muito-claro) 0%, var(--branco) 100%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    animation: fadeInLeft 0.9s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sobre-imagem {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--sombra-forte);
    transition: transform 0.4s ease;
    border: 6px solid var(--bege-escuro);
}

.founder-image:hover {
    transform: scale(1.05);
}

.sobre-texto h3 {
    font-family: var(--fonte-titulo-secundaria);
    font-size: 2rem;
    color: var(--marrom-escuro);
    margin-bottom: 1.5rem;
}

.sobre-texto p {
    color: var(--texto-escuro);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Destaques (highlights) */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight-item {
    background: var(--bege);
    padding: 1.5rem;
    border-radius: var(--raio-borda);
    text-align: center;
    border-left: 4px solid var(--rosa-claro);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-suave);
}

.highlight-item strong {
    color: var(--marrom-escuro);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    color: var(--marrom-medio);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsividade do sobre */
@media (max-width: 968px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ==================== SEÇÃO PRODUTOS ==================== */
.produtos {
    padding: 5rem 0;
    background: var(--branco);
}

.galeria-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.produto-card {
    background: var(--bege);
    border-radius: var(--raio-borda);
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s ease;
    animation: fadeInScale 0.8s ease-out both;
}

/* Animação escalonada para os cards */
.produto-card:nth-child(1) { animation-delay: 0.1s; }
.produto-card:nth-child(2) { animation-delay: 0.2s; }
.produto-card:nth-child(3) { animation-delay: 0.3s; }
.produto-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
}

.produto-imagem {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bege-escuro), var(--bege));
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.1);
}

/* Overlay ao passar mouse */
.produto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 68, 35, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produto-card:hover .produto-overlay {
    opacity: 1;
}

.produto-overlay p {
    color: var(--branco);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.produto-card h3 {
    padding: 1.5rem;
    font-family: var(--fonte-corpo);
    font-size: 1.1rem;
    color: var(--marrom-escuro);
    text-align: center;
    font-weight: 600;
}

/* Responsividade dos produtos */
@media (max-width: 768px) {
    .galeria-produtos {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
}

/* ==================== SEÇÃO CONTATO ==================== */
.contato {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--rosa-muito-claro) 0%, var(--bege) 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
    animation: fadeInRight 0.9s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contato-info h3 {
    font-family: var(--fonte-titulo-secundaria);
    font-size: 1.8rem;
    color: var(--marrom-escuro);
    margin-bottom: 1.5rem;
}

.contato-info p {
    color: var(--texto-escuro);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Botão WhatsApp */
.whatsapp-button {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--raio-borda);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 1rem;
}

.whatsapp-button:hover {
    background: #1ead50;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ==================== FORMULÁRIO DE CONTATO ==================== */
.contato-form {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: var(--raio-borda);
    box-shadow: var(--sombra-forte);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--marrom-escuro);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 2px solid var(--bege-escuro);
    border-radius: var(--raio-borda);
    font-family: var(--fonte-corpo);
    font-size: 1rem;
    color: var(--texto-escuro);
    transition: all 0.3s ease;
    background: var(--branco);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rosa-claro);
    box-shadow: 0 0 10px rgba(244, 161, 184, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botão de envio */
.submit-button {
    background: linear-gradient(135deg, var(--marrom-medio) 0%, var(--marrom-escuro) 100%);
    color: var(--branco);
    padding: 1rem;
    border: none;
    border-radius: var(--raio-borda);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--fonte-corpo);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 68, 35, 0.3);
    margin-top: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 68, 35, 0.5);
}

.submit-button:active {
    transform: translateY(-1px);
}

/* Responsividade contato */
@media (max-width: 968px) {
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-info h3 {
        font-size: 1.5rem;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--marrom-escuro);
    color: var(--branco);
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 4px solid var(--rosa-claro);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
    align-items: center;
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--fonte-titulo);
    font-size: 1.8rem;
    color: var(--rosa-claro);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.footer-brand p {
    font-size: 0.95rem;
    color: var(--bege);
}

.footer-text {
    font-size: 0.9rem;
    color: var(--bege-escuro);
}

/* Responsividade footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==================== EFEITOS DE SCROLL (AOS - Scroll Animation) ==================== */
/* Classe para ativar animações ao fazer scroll */
.scroll-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.scroll-fade-in.active {
    opacity: 1;
}

/* ==================== RESPONSIVIDADE GERAL ==================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .navbar-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-card {
        margin: 0;
    }
}

/* ==================== ACESSIBILIDADE ==================== */
/* Respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
