/* Reset & Global Styles */
:root {
    --primary-color: #D4AFB9;
    --secondary-color: #D1CFE2;
    --accent-color: #9cadce;
    --text-color: #333;
    --bg-color: #fdfcff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

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

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

.logo {
    height: 60px;
    width: auto;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav ul li {
    margin-left: 25px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.btn-agendar {
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    border-bottom: none !important;
}

.btn-agendar:hover {
    background: var(--accent-color);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Page transitions */
.page {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    background: url('hero-bg.png') no-repeat center center/cover;
    height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-text {
    background: rgba(0,0,0,0.4);
    padding: 2rem 4rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}
.hero-text h1, .hero-text p {
    color: #fff;
}

.hero-text .fade-in {
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
}
.hero-text .hero-logo.fade-in { animation-delay: 0.2s; }
.hero-text h1.fade-in { animation-delay: 0.5s; }
.hero-text p.fade-in { animation-delay: 0.8s; }
.hero-text a.fade-in { animation-delay: 1.1s; }


.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-color);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-content img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 185, 0.4);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.contact-info { flex: 1; }
.contact-form { flex: 2; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--body-font);
}

/* Booking Form */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--body-font);
}
.booking-form .btn {
    width: 100%;
    padding: 15px;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav ul {
        flex-direction: column;
    }

    .nav ul li {
        margin: 20px 0;
    }

    .nav ul li a {
        font-size: 1.5rem;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }

    .about-content img {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .hero-text {
        padding: 1.5rem;
    }
}
