:root {
    --navy:   #0F2340;
    --blue:   #1A5CFF;
    --blue-h: #1448D4;
    --gold:   #C9963A;
    --off:    #F7F6F2;
    --white:  #FFFFFF;
    --text:   #1A1A2E;
    --muted:  #6B7280;
    --border: #E5E7EB;
    --card:   #FFFFFF;
    --wpp:    #25D366;
    --wpp-h:  #1DAD57;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(15,35,64,.10);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILS ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--alt { background: var(--off); }
.tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
h2.title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(20px, 5vw, 40px);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 16px;
}
p.subtitle {
    font-size: 17px;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.6;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color .15s;
}

.header__nav a:hover {
    color: var(--blue);
}
/* ── MOBILE MENU ────────────────────────────────────────── */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.header__menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all .3s;
}

.header__menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header__menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .header__menu-toggle {
        display: flex;
        order: 3;
    }

    .header__cta {
        display: none !important;
    }

    .header__nav {
        display: none;
    }

    .header__nav.active {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 20px 24px;
        gap: 0;
        display: flex;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(15,35,64,.10);
        z-index: 99;
    }

    .header__nav.active a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
    }

    .header__nav.active a:last-child {
        border-bottom: none;
    }
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s, background .15s;
    white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--wpp {
    background: var(--wpp);
    color: #fff;
    box-shadow: 0 4px 18px rgba(37,211,102,.30);
}
.btn--wpp:hover { background: var(--wpp-h); box-shadow: 0 6px 24px rgba(37,211,102,.40); }
.btn--blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26,92,255,.25);
}
.btn--blue:hover { background: var(--blue-h); }
.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 17px; border-radius: 10px; }

/* ── HEADER ─────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo__mark {
    width: 36px;
    height: 36px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
}
.logo__text {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}
.logo__text span { display: block; font-size: 11px; font-weight: 400; color: var(--muted); letter-spacing: .05em; }
.header__cta { display: none; }
@media (min-width: 640px) {
    .header__cta { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    padding-top: 64px;
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80');
    background-size: cover;
    background-position: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(199deg, rgba(15,35,64,.88) 0%, rgba(15,35,64,.55) 90%, rgba(15,35,64,.30) 100%);

}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 48px 20px 64px;
}

@media (min-width: 640px) {
    .hero__content { padding: 48px 0 64px; }
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero__eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.hero__h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 8vw, 45px);
    line-height: 1.1;
    color: #fff;
    max-width: 680px;
    margin-bottom: 24px;
}
.hero__h1 em { font-style: italic; color: var(--gold); }
.hero__sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,.78);
    max-width: 460px;
    line-height: 1.6;
    margin-bottom: 36px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero__scroll svg { opacity: .5; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ──────────────────────────────────────────── */
.statsbar {
    background: var(--navy);
    padding: 20px 0;
}
.statsbar__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.statsbar__item {
    text-align: center;
    padding: 12px 8px;
    border-right: 1px solid rgba(255,255,255,.1);
}
.statsbar__item:last-child { border-right: none; }
.statsbar__num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 5vw, 36px);
    color: var(--gold);
    line-height: 1;
}
.statsbar__label {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
    letter-spacing: .04em;
}

.box-contex {
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
    margin: 16px auto 4px;
    padding: 0 20px 20px;
    line-height: 1.6;
    letter-spacing: .01em;
}
.box-contex__quote {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--gold);
    opacity: .7;
    vertical-align: -3px;
    margin: 0 2px;
}

/* ── SOBRE ──────────────────────────────────────────────── */
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.sobre__img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.sobre__img-wrap img { height: 100%; object-fit: cover; }
.sobre__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 13px;
}
.sobre__badge strong { display: block; font-size: 20px; font-family: 'DM Serif Display', serif; color: var(--gold); }
.sobre__bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.bullet {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.bullet__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #EEF3FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.bullet__icon svg { display: block; }
.bullet__text strong { display: block; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.bullet__text span { font-size: 13px; color: var(--muted); }
@media (min-width: 768px) {
    .sobre__grid { grid-template-columns: 1fr 1fr; }
}

/* ── VITRINE ────────────────────────────────────────────── */
.vitrine__header {
    text-align: center;
    margin-bottom: 40px;
}
.vitrine__header .subtitle { margin: 0 auto; }
.vitrine__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .vitrine__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .vitrine__grid { grid-template-columns: repeat(4, 1fr); } }

.card {
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(15,35,64,.13); }
.card__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.card__img img { height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__img img { transform: scale(1.04); }
.card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: .04em;
}
.card__body { padding: 20px; }
.card__price {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}
.card__name {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 6px;
}
.card__loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}
.card__specs {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-bottom: 16px;
}
.card__specs span { display: flex; align-items: center; gap: 4px; }
.card__cta { width: 100%; text-align: center; justify-content: center; }

/* ── DIFERENCIAIS ───────────────────────────────────────── */
.dif__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (min-width: 768px) { .dif__grid { grid-template-columns: repeat(4, 1fr); } }
.dif__item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}
.dif__item:hover { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,92,255,.08); }
.dif__icon {
    width: 56px;
    height: 56px;
    background: #EEF3FF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}
.dif__icon svg { display: block; }
.dif__title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.dif__desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
    background: var(--navy);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(201,150,58,.08);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(26,92,255,.1);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 5vw, 48px);
    color: #fff;
    margin-bottom: 14px;
}
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 460px; margin: 0 auto 36px; line-height: 1.6; }
.cta-section__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── CONTATO ────────────────────────────────────────────── */
.contato__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 768px) { .contato__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contato__info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 12px;
}
.contato__info p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.contato__wpp {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
}
.contato__wpp-icon { font-size: 28px; }
.contato__wpp-text strong { display: block; font-size: 14px; color: #166534; }
.contato__wpp-text span { font-size: 13px; color: #4ADE80; }

.form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
}
.form__title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 24px; }
.form__group { margin-bottom: 16px; }
.form__label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form__input,
.form__select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color .15s, box-shadow .15s;
    appearance: none;
}
.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,92,255,.12);
}
.form__input::placeholder { color: #9CA3AF; }
.form__submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.6);
    padding: 40px 0 24px;
}
.footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 20px;
}
.footer__brand .logo__text { color: #fff; }
.footer__brand .logo__text span { color: rgba(255,255,255,.45); }
.footer__brand p { font-size: 13px; margin-top: 10px; max-width: 260px; line-height: 1.5; }
.footer__links h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer__links ul { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 13px; transition: color .15s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
}

/* ── FLOAT WPP BUTTON ───────────────────────────────────── */
.float-wpp {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--wpp);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    border: none;
}
.float-wpp:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.float-wpp__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--wpp);
    animation: pulse 2s infinite;
    opacity: 0;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: .6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ── FADE IN ────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }