/* Importando Fontes */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary-color: #C69B86; /* Tom rosado/terroso dos botões */
    --text-dark: #2D2D2D;
    --text-light: #666666;
    --bg-creme: #F9F6F2;
    --white: #FFFFFF;
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth; /* Deixa o clique no menu suave */
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-creme);
    line-height: 1.6;opacity: 0;
    animation: fadeInBody 0.8s forwards;
}

@keyframes fadeInBody {
    to { opacity: 1; }
}

/* Responsividade Global */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
}