
:root {

    --bg: #11100f;

    --surface: #191816;

    --text: #f3eee7;

    --muted: #aaa39b;

    --accent: #c79a61;

    --line: rgba(255,255,255,.1);

    --serif: "Playfair Display", Georgia, serif;

    --sans: "DM Sans", Arial, sans-serif;

}


* {

    box-sizing: border-box;

    margin: 0;

    padding: 0;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--bg);

    color: var(--text);

    font-family: var(--sans);

    line-height: 1.6;

}


a {

    color: inherit;

    text-decoration: none;

}


/* ================= HEADER ================= */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 10;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 28px 6vw;

    border-bottom: 1px solid rgba(255,255,255,.12);

}


.logo {

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 3px;

}


.logo span {

    color: var(--accent);

}


.nav {

    display: flex;

    gap: 32px;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 1.2px;

}


.nav a {

    opacity: .8;

    transition: .2s;

}


.nav a:hover {

    opacity: 1;

    color: var(--accent);

}


/* ================= MENU ================= */

.menu-toggle {

    display: none;

    background: none;

    border: 0;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 25px;

    height: 2px;

    margin: 5px;

    background: white;

}


/* ================= HERO ================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding: 130px 8vw;

    overflow: hidden;

    background:

        linear-gradient(
            90deg,
            rgba(12,10,8,.93),
            rgba(12,10,8,.72) 45%,
            rgba(12,10,8,.3)
        ),

        url("images/hero.jpg")

        center / cover;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 70% 50%,
            transparent,
            rgba(0,0,0,.45)
        );

}


.hero-content {

    position: relative;

    max-width: 680px;

}


.eyebrow {

    color: var(--accent);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 18px;

}


h1,
h2 {

    font-family: var(--serif);

    line-height: 1.08;

    font-weight: 700;

}


h1 {

    font-size: clamp(52px, 7vw, 96px);

}


h2 {

    font-size: clamp(40px, 5vw, 68px);

}


h1 em,
h2 em {

    color: var(--accent);

    font-style: italic;

}


.hero-text {

    max-width: 540px;

    color: #d0cbc4;

    margin: 25px 0 34px;

    font-size: 17px;

}


/* ================= BOTÕES ================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 25px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition: .25s;

}


.btn-primary {

    background: var(--accent);

    color: #17120e;

}


.btn-primary:hover {

    transform: translateY(-2px);

    filter: brightness(1.08);

}


.btn-light {

    background: #17120e;

    color: white;

}


.btn-light:hover {

    transform: translateY(-2px);

}


/* ================= SCROLL ================= */

.scroll {

    position: absolute;

    bottom: 35px;

    left: 8vw;

    font-size: 9px;

    letter-spacing: 2px;

    color: #aaa;

}


.scroll span {

    margin-left: 8px;

    color: var(--accent);

}


/* ================= SEÇÕES ================= */

.section {

    padding: 115px 8vw;

}


.section-heading {

    margin-bottom: 60px;

}


.centered {

    text-align: center;

}


/* ================= SERVIÇOS ================= */

.service-grid {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    border-top: 1px solid var(--line);

}


.service-card {

    padding: 38px 32px 42px;

    border-right: 1px solid var(--line);

    min-height: 285px;

}


.service-card:last-child {

    border-right: 0;

}


.service-card.featured {

    background: var(--surface);

}


.service-number {

    color: var(--accent);

    font-size: 11px;

    letter-spacing: 2px;

}


.service-card h3 {

    font-family: var(--serif);

    font-size: 28px;

    margin: 40px 0 10px;

}


.service-card p {

    color: var(--muted);

    max-width: 280px;

    font-size: 14px;

}


.service-card strong {

    display: block;

    margin-top: 28px;

    color: var(--accent);

}


/* ================= SOBRE ================= */

.about {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;

    background: var(--surface);

}


.about-image {

    background:

        linear-gradient(
            rgba(0,0,0,.1),
            rgba(0,0,0,.25)
        ),

        url("images/sobre.jpg")

        center / cover;

}


.about-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 80px 9vw;

}


.about-content > p:not(.eyebrow) {

    color: var(--muted);

    margin-top: 24px;

    max-width: 540px;

    font-size: 15px;

}


.text-link {

    color: var(--accent);

    margin-top: 35px;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}


.text-link span {

    margin-left: 10px;

}


/* ================= GALERIA ================= */

.gallery-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr .9fr;

    gap: 12px;

    height: 530px;

}


.gallery-item {

    background-position: center;

    background-size: cover;

}


.gallery-one {

    background-image:

        url("images/galeria-1.jpg");

}


.gallery-two {

    background-image:

        url("images/galeria-2.jpg");

}


.gallery-three {

    background-image:

        url("images/galeria-3.jpg");

}


/* ================= CTA ================= */

.cta {

    padding: 90px 8vw;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    background: var(--accent);

    color: #17120e;

}


.cta .eyebrow {

    color: #5f4327;

}


.cta h2 em {

    color: #fff5e7;

}


/* ================= CONTATO ================= */

.contact {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 450px;

}


.contact-card {

    padding: 80px 8vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.contact-card h3 {

    font-family: var(--serif);

    font-size: 34px;

    margin-bottom: 15px;

}


.contact-card p {

    color: var(--muted);

    margin-bottom: 18px;

}


.contact-card a {

    color: var(--accent);

    font-size: 13px;

    margin-top: 10px;

}


.map-placeholder {

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: #171615;

    border-left: 1px solid var(--line);

    color: var(--accent);

    letter-spacing: 3px;

    font-size: 10px;

}


.map-placeholder p {

    margin-top: 10px;

    color: #777;

    letter-spacing: 1px;

}


/* ================= FOOTER ================= */

footer {

    padding: 30px 8vw;

    border-top: 1px solid var(--line);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #777;

    font-size: 11px;

}


/* ================= WHATSAPP ================= */

.whatsapp-float {

    position: fixed;

    right: 24px;

    bottom: 24px;

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    background: #25d366;

    border-radius: 50%;

    box-shadow: 0 10px 30px rgba(0,0,0,.35);

    z-index: 20;

    transition: .2s;

}


.whatsapp-float:hover {

    transform: translateY(-3px) scale(1.03);

}


.whatsapp-float svg {

    width: 29px;

    height: 29px;

    fill: white;

}


/* ================= MOBILE ================= */

@media (max-width: 800px) {

    .header {

        padding: 22px 6vw;

    }


    .menu-toggle {

        display: block;

        z-index: 12;

    }


    .nav {

        position: absolute;

        top: 0;

        right: 0;

        width: 100%;

        min-height: 100vh;

        background: #11100f;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 28px;

        transform: translateX(100%);

        transition: .3s;

    }


    .nav.open {

        transform: translateX(0);

    }


    .hero {

        padding: 120px 7vw 80px;

        min-height: 90vh;

    }


    .hero-text {

        font-size: 15px;

    }


    .service-grid,
    .about,
    .contact {

        grid-template-columns: 1fr;

    }


    .service-card {

        border-right: 0;

        border-bottom: 1px solid var(--line);

    }


    .about-image {

        min-height: 430px;

    }


    .about-content {

        padding: 70px 7vw;

    }


    .gallery-grid {

        grid-template-columns: 1fr 1fr;

        height: auto;

    }


    .gallery-one {

        grid-column: 1 / -1;

        min-height: 400px;

    }


    .gallery-item {

        min-height: 300px;

    }


    .cta {

        flex-direction: column;

        align-items: flex-start;

    }


    .contact-card {

        padding: 70px 7vw;

    }


    .map-placeholder {

        min-height: 300px;

        border-left: 0;

        border-top: 1px solid var(--line);

    }


    footer {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }

}
/* ================= MAPA ================= */

/* ================= MAPA ================= */

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* ================= MOBILE ================= */

@media (max-width: 800px) {

    .map-container {
        height: 320px;
    }

    .map-container iframe {
        height: 320px;
    }

}
