:root {
    --dark: #070707;
    --graphite: #141414;
    --gold: #f3bc16;
    --text: #202020;
    --muted: #6c6c6c;
    --light: #f7f3eb;
    --white: #ffffff;

    --radius: 24px;

    --shadow:
        0 24px 70px rgba(0,0,0,.18);
}

/* ==========================
   RESET
========================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--light);
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================
   TOPO
========================== */

.topbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);

    width: min(1120px, calc(100% - 32px));
    min-height: 96px;

    background: rgba(10,10,10,.86);
    backdrop-filter: blur(14px);

    z-index: 10;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 18px 10px 24px;

    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    overflow: visible;
}

.brand img {
    height: auto;
    max-height: 78px;
    width: auto;
    max-width: 260px;

    object-fit: contain;
    object-position: center;

    display: block;
    background: transparent;
    border-radius: 0;
}

nav {
    display: flex;
    gap: 6px;
}

nav a {

    color: #fff;

    padding: 13px 16px;

    border-radius: 999px;

    font-weight: 700;

    font-size: 14px;
}

nav a:hover {
    background: rgba(255,255,255,.12);
}

.menu-btn {
    display: none;
}

/* ==========================
   HERO
========================== */

.hero {

    min-height: 96vh;

    position: relative;

    display: flex;

    align-items: end;

    overflow: hidden;

    background: #111;
}

.hero-bg {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.35),
            rgba(0,0,0,.05)
        ),
        url('../summer/img_05.jpg');

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    transform: scale(1.02);
}

.hero-content {

    position: relative;

    width: min(1120px, calc(100% - 40px));

    margin: 0 auto;

    padding: 170px 0 110px;

    color: #fff;
}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    text-transform: uppercase;

    letter-spacing: .16em;

    font-weight: 800;

    font-size: 12px;

    color: var(--gold);
}

.eyebrow::before {

    content: "";

    width: 38px;

    height: 2px;

    background: currentColor;
}

.eyebrow.dark {
    color: #7e5b00;
}

.hero h1 {

    font-size: clamp(42px,7vw,86px);

    line-height: .96;

    max-width: 900px;

    margin: 20px 0;

    font-weight: 800;

    letter-spacing: -.06em;
}

.hero p {

    font-size: 20px;

    line-height: 1.6;

    max-width: 650px;

    color: #eee;
}

.actions {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 34px;
}

/* ==========================
   BOTÕES
========================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 999px;

    padding: 15px 22px;

    font-weight: 800;
}

.primary {

    background: var(--gold);

    color: #111;
}

.ghost {

    background: rgba(255,255,255,.12);

    color: #fff;

    border: 1px solid rgba(255,255,255,.35);
}

/* ==========================
   SEÇÕES
========================== */

.section {

    width: min(1120px, calc(100% - 40px));

    margin: 0 auto;

    padding: 90px 0;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 52px;

    align-items: end;
}

.section h2,
.feature h2,
.cta h2 {

    font-size: clamp(32px,4.5vw,56px);

    line-height: 1.05;

    margin: 16px 0 0;

    letter-spacing: -.045em;
}

.section p {

    font-size: 18px;

    line-height: 1.75;

    color: var(--muted);
}

/* ==========================
   CARDS
========================== */

.cards {

    width: min(1120px, calc(100% - 40px));

    margin: 0 auto 90px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 18px;
}

.cards article {

    background: #fff;

    border-radius: var(--radius);

    padding: 34px;

    box-shadow:
        0 18px 50px rgba(0,0,0,.06);
}

.cards span {

    color: var(--gold);

    font-weight: 900;
}

.cards h3 {

    font-size: 24px;

    margin: 18px 0 10px;
}

.cards p {

    color: var(--muted);

    line-height: 1.65;
}

/* ==========================
   FEATURE
========================== */

.feature {

    width: min(1120px, calc(100% - 40px));

    margin: 0 auto 90px;

    background: #fff;

    border-radius: 34px;

    overflow: hidden;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    box-shadow: var(--shadow);
}

.feature-img img {

    height: 100%;

    min-height: 540px;

    object-fit: cover;
}

.feature-text {
    padding: 56px;
}

.feature ul {

    padding: 0;

    margin: 28px 0 0;

    list-style: none;
}

.feature li {

    padding: 16px 0 16px 34px;

    border-bottom: 1px solid #eee;

    position: relative;

    font-weight: 700;
}

.feature li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--gold);

    font-weight: 900;
}

/* ==========================
   GALERIA
========================== */

.gallery-head {

    padding-top: 0;

    padding-bottom: 28px;
}

.gallery {

    width: min(1120px, calc(100% - 40px));

    margin: 0 auto 100px;

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 16px;
}

.gallery img {

    height: 310px;

    width: 100%;

    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 14px 38px rgba(0,0,0,.12);
}

.gallery img:nth-child(2),
.gallery img:nth-child(4) {

    grid-row: span 2;

    height: 636px;
}

/* ==========================
   CTA
========================== */

.cta {

    width: min(1120px, calc(100% - 40px));

    margin: 0 auto 80px;

    background:
        linear-gradient(
            135deg,
            #050505,
            #222
        );

    color: #fff;

    border-radius: 34px;

    padding: 58px;

    display: grid;

    grid-template-columns: 1fr 390px;

    gap: 40px;

    align-items: center;

    box-shadow: var(--shadow);
}

.cta p {

    color: #d7d7d7;

    line-height: 1.7;
}

.contact-card {

    background: #fff;

    color: #111;

    border-radius: 26px;

    padding: 30px;
}

.contact-card strong {
    font-size: 24px;
}

.contact-card p {
    color: #555;
}

.full {
    width: 100%;
    margin-top: 10px;
}

.map {

    display: block;

    text-align: center;

    margin-top: 16px;

    font-weight: 800;

    color: #7e5b00;
}

/* ==========================
   FOOTER
========================== */

footer {

    background: #050505;

    color: #aaa;

    text-align: center;

    padding: 38px 20px;
}

footer img {
    object-fit: cover;
    width: 160px;
    height: 54px;
    border-radius: 999px;
    overflow: hidden;
}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 850px) {

    .topbar {

        top: 10px;

        height: auto;

        border-radius: 24px;

        align-items: flex-start;
    }

    .menu-btn {

        display: block;

        background: var(--gold);

        border: 0;

        border-radius: 16px;

        padding: 12px 15px;

        font-size: 20px;

        font-weight: 900;
    }

    nav {

        display: none;

        position: absolute;

        top: 78px;

        left: 0;

        right: 0;

        background: #111;

        border-radius: 22px;

        padding: 10px;

        flex-direction: column;
    }

    .menu-open nav {
        display: flex;
    }

    .hero-content {
        padding: 150px 0 70px;
    }

    .section,
    .feature,
    .cta {
        grid-template-columns: 1fr;
    }

    .cards,
    .gallery {
        grid-template-columns: 1fr;
    }

    .feature-text,
    .cta {
        padding: 34px;
    }

    .feature-img img {
        min-height: 360px;
    }

    .gallery img,
    .gallery img:nth-child(2),
    .gallery img:nth-child(4) {
        height: 300px;
    }

    .cta {
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 24px;
    }
}