/* --- VARIÁVEIS E RESET --- */
:root {
    --cor-chocolate: #5D4037;
    --cor-chocolate-escuro: #3E2723;
    --cor-creme: #FFF8E1;
    --cor-creme-escuro: #FFECB3;
    --cor-rosa: #F06292;
    --cor-rosa-escuro: #E91E63;
    --cor-branco: #ffffff;
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    --sombra: 0 4px 15px rgba(0,0,0,0.1);
    --transicao: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--cor-texto);
    background-color: var(--cor-creme);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--cor-chocolate);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

.emoji {
    margin-right: 10px;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--cor-texto-claro);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- HEADER --- */
header {
    background-color: var(--cor-branco);
    box-shadow: var(--sombra);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transicao);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-chocolate);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--cor-rosa);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--cor-chocolate);
    transition: var(--transicao);
    position: relative;
}

.nav-links a::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--cor-rosa);
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: var(--transicao);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--cor-rosa);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transicao);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--cor-chocolate);
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1558301211-0d8c8ddee6ec?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.9), rgba(62, 39, 35, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: var(--cor-rosa);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transicao);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--cor-rosa-escuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 98, 146, 0.4);
}

/* --- CONTENT BOX --- */
.content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

/* --- GRIDS --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* --- CARDS --- */
.bg-chocolate {
    background-color: var(--cor-chocolate);
    color: white;
}

.bg-chocolate h2, .bg-chocolate h3 {
    color: var(--cor-creme);
}

.bg-chocolate .icon-box {
    background: rgba(255,255,255,0.1);
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transicao);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--cor-rosa);
    border-radius: 50%;
    display: flex;
    align-items: center