/* --- CONFIGURAÇÕES GLOBAIS E VARIÁVEIS DE COR --- */
:root {
    --color-primary: #D988A7; /* Rosa principal, mais sofisticado */
    --color-primary-dark: #C2708F;
    --color-secondary: #F5E8DD; /* Fundo creme/bege claro */
    --color-text: #4F4F4F; /* Cinza escuro para texto */
    --color-headings: #333; /* Títulos um pouco mais escuros */
    --color-white: #FFFFFF;
    --color-light-gray: #f9f9f9;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.7;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }


/* --- CABEÇALHO E NAVEGAÇÃO (FINAL) --- */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    padding: 5px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* <<< ALTURA FINAL PARA O EQUILÍBRIO PERFEITO */
}

/* <<< AJUSTE FINAL PARA LOGO COM PRESENÇA E CLAREZA >>> */
.nav-logo {
    height: 65px; /* Tamanho ideal: visível, nítido e elegante */
    width: auto;  /* A largura se ajusta automaticamente */
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    margin-left: 22px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.btn-nav {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white) !important;
}

/* --- ÍCONE DO MENU HAMBÚRGUER E ÍCONE DE FECHAR --- */
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-headings);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle .icon-close { display: none; }
.nav-toggle .icon-open { display: block; }

.nav-toggle.active .icon-close { display: block; }
.nav-toggle.active .icon-open { display: none; }


/* --- SEÇÃO HERO --- */
.hero {
    background-color: var(--color-secondary);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    color: var(--color-headings);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title .highlight {
    font-style: italic;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* --- SEÇÃO DE DIFERENCIAIS (FEATURES) --- */
.features, .about {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--color-headings);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--color-headings);
    margin-bottom: 10px;
}

/* --- SEÇÃO SOBRE NÓS --- */
.about { background-color: var(--color-light-gray); }

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content { flex: 1; }
.about-image-wrapper { 
    flex: 1; 
    text-align: center;
}

.section-tagline {
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.about .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-image-wrapper img {
    max-width: 100%;
    width: 450px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* --- SEÇÃO DE CHAMADA PARA AÇÃO (CTA) --- */
.cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary);
    margin: 5px;
}

.cta-buttons .btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    margin: 5px;
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* --- RODAPÉ --- */
.footer {
    background-color: var(--color-text);
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer .fa-heart {
    color: var(--color-primary);
}

/* --- RESPONSIVIDADE E MENU MOBILE --- */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 80px; /* Posição correta abaixo do novo topo */
        right: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--color-white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    
    .nav-links.active {
        max-height: 300px;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .btn-nav {
        border-radius: 0;
        width: 100%;
    }

    .hero-title { font-size: 2.5rem; }
    .section-title, .cta-title { font-size: 2rem; }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-container {
        flex-direction: column;
    }
    .about .section-title {
        text-align: center;
    }
    .about-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-primary, .btn-secondary {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}