:root {
    --bg-dark: #1e1e1e;
    --bg-light: #252525;
    --gold: #d4af37;
    --text-color: #f0f0f0;
    --white: #fff;
}

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

body {
    font-family: 'Roboto Slab', serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Rye', cursive;
    color: var(--gold);
}

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

/* Header */
.header {
    background-color: var(--bg-light);
    padding: 20px 0;
    border-bottom: 2px solid var(--gold);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s;
}

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

.btn-agendar {
    border: 1px solid var(--gold);
    padding: 8px 15px;
    border-radius: 4px;
    color: var(--gold) !important;
}

.btn-agendar:hover {
    background-color: var(--gold);
    color: var(--bg-dark) !important;
}

/* Hero */
.hero {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?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;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-hero:hover {
    background-color: #b59025;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    border-bottom: 1px dashed #444;
    padding-bottom: 20px;
}

.service-name {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.service-name h3 {
    font-size: 1.5rem;
    font-family: 'Roboto Slab', serif;
    color: var(--white);
}

.service-name span {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

.service-item p {
    color: #999;
    font-style: italic;
}

/* Gallery */
.gallery {
    padding: 80px 0;
}

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

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid #333;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.gallery-grid img:hover {
    filter: grayscale(0%);
    border-color: var(--gold);
}

/* CTA Section */
.cta-section {
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-section .btn-hero {
    background-color: var(--bg-dark);
    color: var(--gold);
}

.cta-section .btn-hero:hover {
    background-color: #000;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    color: #777;
}

.socials {
    margin-top: 20px;
}

.socials a {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
