:root {
    --primary-color: #3c4e33;
    --secondary-color: #293622;
    --white: #fefefe;
    --font-heading: 'Anton', 'Oswald', 'Bebas Neue', sans-serif;
    --font-body: 'Lato', sans-serif
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: #293622;
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    padding: 15px 0;
    contain: layout style
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px
}

.logo a {
    display: flex;
    align-items: center
}

.logo-img {
    height: 50px;
    width: auto;
    display: block
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center
}

.nav-menu a {
    font-size: .9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    text-decoration: none
}

.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    min-height: 44px;
    background-color: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 50px;
    text-decoration: none
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    background: none;
    border: none
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--secondary-color);
    transition: transform .3s ease, opacity .3s ease
}

img {
    max-width: 100%;
    height: auto
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 80px
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .68))
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px clamp(70px, 8vw, 90px);
    max-width: 900px;
    width: 100%
}

.hero-label {
    font-size: .75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 14px
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px
}

.hero-subtitle {
    font-size: clamp(.95rem, 2.5vw, 1.15rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, .9);
    margin-bottom: clamp(20px, 4vw, 32px)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    min-height: 48px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .9rem;
    cursor: pointer;
    text-decoration: none
}

/* Lista de serviços dentro dos cards */
.service-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .9rem;
    color: #485742
}

.service-list li:last-child {
    border-bottom: none
}

.service-list li svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-color);
    flex-shrink: 0
}

/* Destaques exclusivos */
.destaque-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 48px)
}

.destaque-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    transition: transform .4s ease
}

.destaque-card:hover {
    transform: translateY(-8px)
}

.destaque-img {
    height: 280px;
    overflow: hidden
}

.destaque-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.destaque-card:hover .destaque-img img {
    transform: scale(1.06)
}

.destaque-content {
    padding: clamp(24px, 3vw, 32px);
    background: var(--white)
}

.destaque-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 14px
}

.destaque-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px
}

/* CTA */
.cta-block {
    text-align: center;
    padding: clamp(112px, 17vw, 168px) 0 clamp(70px, 11vw, 112px) 0;
    background-color: var(--white);
}

.cta-block h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px
}

.cta-block p {
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 1rem;
    line-height: 1.6;
    color: #485742
}

section:not(.page-hero),
footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px
}

@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .logo-img {
        height: 45px
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        display: flex;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: 100dvh;
        text-align: center;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: left .3s ease
    }

    .nav-menu.active {
        left: 0
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

    .page-hero {
        height: 55vh;
        min-height: 360px
    }

    .page-title {
        font-size: clamp(2rem, 11vw, 3rem)
    }

    .destaque-grid {
        grid-template-columns: 1fr
    }

    .destaque-img {
        height: 220px
    }
}