:root {
    --primary: #c5a059; /* Dourado */
    --bg-dark: #1a1a1a;
    --text-light: #f9f9f9;
    --white: #fff;
}

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

body {
    font-family: 'Playfair Display', serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.header nav a {
    text-decoration: none;
    color: #555;
    margin-left: 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.header nav a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1519225421980-715cb0202128?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 40px;
}

.btn-hero {
    display: inline-block;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn-hero:hover {
    background-color: var(--white);
    color: #333;
}

/* Services */
.services {
    padding: 100px 0;
    text-align: center;
}

.services h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact */
.contact {
    padding: 100px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.contact h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 30px;
    font-weight: 700;
}

footer {
    padding: 30px;
    text-align: center;
    background-color: #111;
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 20px;
    }
    .header nav {
        margin-top: 20px;
    }
    .header nav a {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}
