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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #7E4A39 0%, #5d3428 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C6AE5B;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #C6AE5B;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C6AE5B;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C6AE5B;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(126, 74, 57, 0.9), rgba(93, 52, 40, 0.9)), 
                url('../img/hero-sobre.jpg') center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff, #C6AE5B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 600px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Intro */
.about-intro {
    text-align: center;
    padding: 4rem 0 2rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    color: #7E4A39;
    margin-bottom: 2rem;
    position: relative;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #C6AE5B, #b8a049);
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Sections */
.service-section {
    margin: 4rem 0;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
}

.service-section h2 {
    font-size: 2.2rem;
    color: #7E4A39;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.service-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #C6AE5B, #b8a049);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #C6AE5B;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    color: #7E4A39;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(126, 74, 57, 0.1);
}

.price-label {
    font-weight: 500;
    color: #555;
}

.price-value {
    font-weight: 700;
    color: #7E4A39;
    font-size: 1.1rem;
}

.price-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(198, 174, 91, 0.1);
    border-radius: 8px;
    border-left: 3px solid #C6AE5B;
}

.price-note p {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.service-description {
    background: linear-gradient(135deg, rgba(126, 74, 57, 0.05), rgba(198, 174, 91, 0.05));
    border-radius: 15px;
    padding: 2rem;
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    text-align: justify;
}

/* Gallery */
.service-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 400px;
}

.gallery-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-image:nth-child(1) {
    grid-column: 1 / 3;
    height: 200px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #7E4A39, #5d3428);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #C6AE5B;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #C6AE5B, #b8a049);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #b8a049, #a8944a);
}

.contact-btn img {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #7E4A39 0%, #5d3428 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #C6AE5B;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(198, 174, 91, 0.3);
    opacity: 0.8;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #C6AE5B;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: white;
    color: #C6AE5B;
    transform: translateY(-3px);
}

.social-links img {
    width: 100%;
    height: auto;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.15);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #7E4A39 0%, #5d3428 100%);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-intro h2 {
        font-size: 2rem;
    }

    .about-intro p {
        font-size: 1.1rem;
    }

    .service-section {
        padding: 2rem;
        margin: 2rem 0;
    }

    .service-section h2 {
        font-size: 1.8rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        max-width: 300px;
    }

    .gallery-image {
        height: 120px;
    }

    .gallery-image:nth-child(1) {
        height: 160px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .price-card {
        padding: 1.5rem;
    }

    .service-description {
        padding: 1.5rem;
    }
}