    :root {
    --wtb-primary: #FFCB05;
    --wtb-gray: #89898A;
    --wtb-white: #FFFFFF;
    --wtb-dark: #5B5B5B;
    --wtb-soft: #F7F4F2;
    --wtb-border: rgba(137, 137, 138, .28);
    --shadow: 0 24px 70px rgba(36, 36, 36, .14);
    --wtb-green: #15b650;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--wtb-dark);
    background: var(--wtb-white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: var(--wtb-dark);
    color: var(--wtb-white);
    font-size: .88rem;
    padding: 9px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.social-inline,
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-inline a,
.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wtb-white);
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    opacity: .92;
    transition: .2s ease;
}

.social-inline a:hover,
.social-icons a:hover {
    color: var(--wtb-white);
    background: var(--wtb-primary);
    border-color: var(--wtb-primary);
    opacity: 1;
    transform: translateY(-2px);
}

.social-inline svg,
.social-icons svg,
.whatsapp-float svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.footer-social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--wtb-border);
}

.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    color: var(--wtb-primary);
}

.brand img {
    width: 145px;
    height: auto;
    object-fit: contain;
}

.brand-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--wtb-primary);
    padding: 8px 12px;
    border-radius: 2px;
    font-weight: 800;
    color: var(--wtb-primary);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 600;
    color: var(--wtb-gray);
}

nav a:hover {
    color: var(--wtb-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 700;
    padding: 14px 22px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    font-size: .96rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 203, 5, .24);
}

.btn-primary {
    background: var(--wtb-green);
    color: var(--wtb-white);
}

.btn-outline {
    border: 1px solid var(--wtb-primary);
    color: var(--wtb-primary);
    background: var(--wtb-white);
}

.hero {
    position: relative;
    overflow: hidden;
background:
    linear-gradient(115deg, rgba(36,36,36,.67), rgba(36,36,36,.72)),
    url('assets/img/logo.png') center/cover no-repeat;
    color: var(--wtb-white);
    padding: 58px 0 58px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    /* background: rgba(255, 203, 5, .34); */
    right: -140px;
    bottom: -160px;
    filter: blur(4px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 48px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--wtb-white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .86rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wtb-primary);
}

.hero h1 {
    font-size: clamp(1.88rem, 4vw, 4.08rem);
    line-height: .98;
    letter-spacing: -.06em;
    max-width: 760px;
    margin-bottom: 24px;
}

.hero h1 span {
    color: #FFCB05;
}

.brand-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
}

.brand-social .social-inline a {
    color: var(--wtb-primary);
    border-color: var(--wtb-border);
    background: var(--wtb-white);
}

.form-arrow {
    display: flex;
    justify-content: flex-end;
    padding-right: 18px;
    color: var(--wtb-white);
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: .7;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.form-arrow::before {
    content: '\2192';
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(12px); }
}

.hero p {
    max-width: 660px;
    color: rgba(255,255,255,.84);
    font-size: 1.12rem;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-card {
    background: rgba(255, 255, 255, .96);
    color: var(--wtb-dark);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.hero-card h2 {
    font-size: 1.55rem;
    margin-bottom: 12px;
    color: var(--wtb-primary);
}

.hero-card p {
    color: var(--wtb-gray);
    margin-bottom: 24px;
    font-size: .98rem;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--wtb-dark);
    display: block;
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--wtb-border);
    background: var(--wtb-white);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    color: var(--wtb-dark);
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}

textarea {
    min-height: 112px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--wtb-primary);
    box-shadow: 0 0 0 4px rgba(255, 203, 5, .12);
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--wtb-soft);
}

.section-title {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-title .tag {
    color: var(--wtb-primary);
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--wtb-gray);
    font-size: 1.05rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 42px;
    align-items: start;
}

.about-copy {
    font-size: 1.05rem;
    color: #4f4f50;
}

.about-copy p + p {
    margin-top: 18px;
}

.creci {
    margin-top: 24px;
    display: inline-flex;
    border-left: 5px solid var(--wtb-primary);
    background: var(--wtb-white);
    padding: 14px 18px;
    font-weight: 800;
    color: var(--wtb-primary);
    box-shadow: 0 14px 34px rgba(36,36,36,.08);
}

.stats {
    display: grid;
    gap: 16px;
}

.stat-card {
    background: var(--wtb-white);
    border: 1px solid var(--wtb-border);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 16px 40px rgba(36,36,36,.06);
}

.stat-card strong {
    display: block;
    font-size: 2.35rem;
    color: var(--wtb-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--wtb-gray);
    font-weight: 600;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.venture-card {
    background: var(--wtb-white);
    border: 1px solid var(--wtb-border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(36,36,36,.07);
    min-height: 100%;
}

.venture-img {
    min-height: 190px;
    background:
    linear-gradient(135deg, rgba(255,203,5,.74), rgba(36,36,36,.52)),
    url('../../assets/img/empreendimento.jpg') center/cover no-repeat;
}

.venture-card:nth-child(2) .venture-img {
    background:
    linear-gradient(135deg, rgba(137,137,138,.70), rgba(36,36,36,.48)),
    url('../../assets/img/empreendimento-2.jpg') center/cover no-repeat;
}

.venture-card:nth-child(3) .venture-img {
    background:
    linear-gradient(135deg, rgba(255,203,5,.66), rgba(36,36,36,.62)),
    url('../../assets/img/empreendimento-3.jpg') center/cover no-repeat;
}

.venture-body {
    padding: 24px;
}

.venture-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.venture-body p {
    color: var(--wtb-gray);
    margin-bottom: 18px;
}

.link-arrow {
    color: var(--wtb-primary);
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 42px;
    align-items: start;
}

.contact-card {
    background: var(--wtb-dark);
    color: var(--wtb-white);
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.contact-list {
    display: grid;
    gap: 18px;
    color: rgba(255,255,255,.82);
}

.contact-list strong {
    color: var(--wtb-white);
    display: block;
    margin-bottom: 4px;
}

.contact-list a:hover {
    color: #FFCB05;
}

.map-box {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.16);
}

.map-box iframe {
    width: 100%;
    min-height: 250px;
    border: 0;
    display: block;
    filter: grayscale(20%);
}

.contact-form-panel {
    background: var(--wtb-white);
    border: 1px solid var(--wtb-border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 54px rgba(36,36,36,.08);
}

footer {
    background: var(--wtb-dark);
    color: rgba(255,255,255,.76);
    padding: 42px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 28px;
    align-items: start;
}

footer h4 {
    color: var(--wtb-white);
    margin-bottom: 12px;
}

footer a:hover {
    color: #FFCB05;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .35);
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--wtb-primary);
}

@media (max-width: 920px) {
    .topbar .container {
    justify-content: center;
    text-align: center;
    }

    .navbar {
    height: auto;
    padding: 18px 0;
    }

    .mobile-menu-btn {
    display: block;
    }

    nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--wtb-white);
    border-bottom: 1px solid var(--wtb-border);
    display: none;
    }

    nav.active {
    display: block;
    }

    nav ul {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    }

    .hero {
    padding: 58px 0 58px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
    grid-template-columns: 1fr;
    }

    .form-arrow {
    justify-content: center;
    padding: 0 0 8px;
    line-height: 1;
    }

    .form-arrow::before {
    content: '\2193';
    }

    @keyframes arrowPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    }

    .ventures-grid {
    grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .container {
    width: min(100% - 26px, 1160px);
    }

    .brand-social {
    gap: 12px;
    }

    .brand-social .social-inline {
    gap: 7px;
    }

    .brand-social .social-inline a {
    width: 30px;
    height: 30px;
    }

    .form-row {
    grid-template-columns: 1fr;
    }

    .hero-card,
    .contact-form-panel,
    .contact-card {
    padding: 24px;
    border-radius: 22px;
    }

    .hero-actions .btn {
    width: 100%;
    }
}

.btn-primary:hover {
    color: #fff;
    background-color: #035c0f;
    border-color: #035c0f;
}
