/* =================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ================================= */
:root {
    --bg-color: #fdfdfd;
    --primary-text-color: #1a1a1a;
    --secondary-text-color: #555;
    --accent-color: #c5a47e;
    --dark-bg-color: #141414;
    --light-gray: #f7f7f7;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--primary-text-color);
    background-color: var(--bg-color);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* =================================
   CABEÇALHO E NAVEGAÇÃO
   ================================= */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(253, 253, 253, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-text-color);
}

.navbar a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-text-color);
    text-decoration: none;
    margin-left: 35px;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--accent-color);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* =================================
   SEÇÃO HERO
   ================================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90vh;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #b3906c;
    transform: translateY(-3px);
}

/* =================================
   GALERIA DE FOTOS
   ================================= */
.gallery {
    padding: 100px 5%;
    background-color: var(--bg-color);
}

.gallery-