:root {
    --verde-escuro: #1a3a2a;
    --verde-medio: #2d6a4f;
    --verde-claro: #52b788;
    --dourado: #c9a84c;
    --dourado-claro: #e8c87a;
    --creme: #f5f0e8;
    --branco: #fafaf7;
    --cinza-escuro: #1c1c1c;
    --cinza: #666;
    --texto: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--branco);
    color: var(--texto);
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(26, 58, 42, 0.97);
    backdrop-filter: blur(12px);
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dourado-claro);
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--verde-claro);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav ul a {
    color: rgba(245, 240, 232, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav ul a:hover {
    color: var(--dourado-claro);
}

.nav-cta {
    background: var(--dourado);
    color: var(--verde-escuro) !important;
    padding: 9px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--dourado-claro) !important;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--verde-escuro) 0%, #0f2d1e 60%, #081a10 100%);
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--dourado-claro);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 2px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--creme);
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
    color: var(--dourado-claro);
    font-style: italic;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
    background: var(--dourado);
    color: var(--verde-escuro);
    padding: 15px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--dourado-claro);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--creme);
    padding: 15px 36px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(245, 240, 232, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--dourado-claro);
    color: var(--dourado-claro);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    animation: fadeUp 0.7s 0.4s ease both;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dourado-claro);
}

.stat-item p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.55);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 520px;
    animation: fadeUp 0.8s 0.5s ease both;
}

.hero-card-float {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(20px);
    position: absolute;
}

.hc1 {
    top: 0;
    right: 0;
    width: 280px;
    animation: float1 4s ease-in-out infinite;
}

.hc2 {
    bottom: 40px;
    left: 0;
    width: 260px;
    animation: float2 5s ease-in-out infinite;
}

.hero-card-float .tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--verde-claro);
    margin-bottom: 10px;
}

.hero-card-float .title {
    color: var(--creme);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.hero-card-float .price {
    color: var(--dourado-claro);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.hero-card-float .sub {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 4px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--verde-claro), var(--dourado));
    border-radius: 2px;
}

@keyframes float1 {

    0%,
    100% {
    transform: translateY(0)
    }

    50% {
    transform: translateY(-14px)
    }
}

@keyframes float2 {

    0%,
    100% {
    transform: translateY(0)
    }

    50% {
    transform: translateY(10px)
    }
}

@keyframes fadeUp {
    from {
    opacity: 0;
    transform: translateY(24px)
    }

    to {
    opacity: 1;
    transform: translateY(0)
    }
}

.section {
    padding: 90px 5%;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--verde-medio);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 900;
    line-height: 1.18;
    color: var(--verde-escuro);
    margin-bottom: 18px;
}

.section-title em {
    color: var(--dourado);
    font-style: italic;
}

.section-sub {
    color: var(--cinza);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}

.categorias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-card {
    background: var(--creme);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    display: block;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.cat-card.destaque {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--verde-escuro), #0f2d1e);
}

.cat-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.cat-card.destaque .cat-img {
    background: linear-gradient(135deg, #1a4a30, #2d6a4f);
    height: 240px;
    font-size: 5rem;
}

.cat-body {
    padding: 22px 24px 26px;
}

.cat-card.destaque .cat-body {
    padding: 26px 30px 32px;
}

.cat-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(82, 183, 136, 0.15);
    color: var(--verde-medio);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.cat-card.destaque .cat-tag {
    background: rgba(201, 168, 76, 0.2);
    color: var(--dourado-claro);
}

.cat-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 8px;
}

.cat-card.destaque .cat-body h3 {
    font-size: 1.7rem;
    color: var(--creme);
}

.cat-body p {
    font-size: 0.85rem;
    color: var(--cinza);
    line-height: 1.6;
}

.cat-card.destaque .cat-body p {
    color: rgba(245, 240, 232, 0.65);
}

.cat-range {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.cat-range span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--verde-medio);
}

.cat-card.destaque .cat-range span {
    color: var(--dourado-claro);
}

.cat-range .sep {
    color: rgba(0, 0, 0, 0.2);
}

.calc-section {
    background: linear-gradient(160deg, var(--verde-escuro), #0f2d1e);
    padding: 90px 5%;
}

.calc-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calc-info .section-label {
    color: var(--verde-claro);
}

.calc-info .section-title {
    color: var(--creme);
}

.calc-info .section-sub {
    color: rgba(245, 240, 232, 0.6);
}

.calc-perks {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.9rem;
}

.perk-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(82, 183, 136, 0.15);
    border: 1px solid rgba(82, 183, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.calc-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 36px;
}

.calc-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--creme);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--creme);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--verde-claro);
}

.form-group select option {
    background: var(--verde-escuro);
}

.range-wrapper input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0;
    border: none;
}

.range-wrapper input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--dourado);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.range-value {
    text-align: center;
    color: var(--dourado-claro);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 12px;
}

.calc-result {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 24px;
}

.calc-result .res-label {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.calc-result .res-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dourado-claro);
    font-weight: 700;
    margin-top: 4px;
}

.calc-result .res-sub {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 6px;
}

.btn-full {
    width: 100%;
    background: var(--dourado);
    color: var(--verde-escuro);
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
}

.btn-full:hover {
    background: var(--dourado-claro);
    transform: translateY(-1px);
}

.listings {
    background: var(--branco);
}

.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 600;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    cursor: pointer;
    color: var(--cinza);
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--verde-escuro);
    border-color: var(--verde-escuro);
    color: white;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.listing-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: white;
    transition: all 0.3s;
    cursor: pointer;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.listing-thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.listing-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}

.badge-consorcio {
    background: var(--dourado);
    color: var(--verde-escuro);
}

.badge-financ {
    background: var(--verde-medio);
    color: white;
}

.badge-vista {
    background: var(--verde-escuro);
    color: var(--dourado-claro);
}

.listing-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.listing-fav:hover {
    transform: scale(1.15);
}

.listing-body {
    padding: 20px 22px 24px;
}

.listing-loc {
    font-size: 0.75rem;
    color: var(--cinza);
    margin-bottom: 6px;
}

.listing-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--verde-escuro);
    margin-bottom: 12px;
}

.listing-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ltag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(82, 183, 136, 0.1);
    color: var(--verde-medio);
    border: 1px solid rgba(82, 183, 136, 0.2);
}

.listing-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.listing-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--verde-escuro);
}

.listing-price .parcela {
    font-size: 0.78rem;
    color: var(--cinza);
    margin-top: 2px;
}

.listing-price .parcela strong {
    color: var(--verde-medio);
}

.btn-ver {
    background: var(--verde-escuro);
    color: white;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.btn-ver:hover {
    background: var(--verde-medio);
}

.how-section {
    background: var(--creme);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.step-card {
    background: white;
    border-radius: 14px;
    padding: 32px 26px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(45, 106, 79, 0.07);
    position: absolute;
    top: 10px;
    right: 16px;
    line-height: 1;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 18px;
}

.step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--verde-escuro);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--cinza);
    line-height: 1.65;
}

.testimonials {
    background: var(--branco);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.test-card {
    background: var(--creme);
    border-radius: 14px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.stars {
    color: var(--dourado);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.test-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-medio), var(--verde-escuro));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.test-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--verde-escuro);
}

.test-role {
    font-size: 0.75rem;
    color: var(--cinza);
}

.cta-section {
    background: linear-gradient(135deg, var(--verde-escuro), #0d2318);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.08), transparent);
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--creme);
    margin-bottom: 20px;
    position: relative;
}

.cta-section h2 em {
    color: var(--dourado-claro);
    font-style: italic;
}

.cta-section p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
}

footer {
    background: var(--cinza-escuro);
    color: rgba(255, 255, 255, 0.55);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
}

footer h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

footer ul li a:hover {
    color: var(--dourado-claro);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.footer-logos {
    display: flex;
    gap: 20px;
}

.footer-logo {
    font-size: 0.75rem;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.4);
}

.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: white;
    border-radius: 16px;
    padding: 44px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: fadeUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--cinza);
    background: none;
    border: none;
}

.modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--verde-escuro);
    margin-bottom: 8px;
}

.modal p {
    color: var(--cinza);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.modal .form-group label {
    color: var(--cinza);
}

.modal .form-group input,
.modal .form-group select {
    background: var(--creme);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    color: var(--texto);
}

.modal .form-group input:focus,
.modal .form-group select:focus {
    border-color: var(--verde-medio);
}

.modal .form-group select option {
    background: white;
}

.modal .btn-full {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .hero-visual {
    display: none;
    }

    .categorias-grid {
    grid-template-columns: 1fr 1fr;
    }

    .cat-card.destaque {
    grid-column: span 2;
    }

    .calc-wrapper,
    .footer-grid {
    grid-template-columns: 1fr;
    }

    .listings-grid,
    .steps-grid,
    .test-grid {
    grid-template-columns: 1fr 1fr;
    }

    nav ul {
    display: none;
    }
}

@media (max-width: 600px) {

    .categorias-grid,
    .listings-grid,
    .steps-grid,
    .test-grid {
    grid-template-columns: 1fr;
    }

    .cat-card.destaque {
    grid-column: span 1;
    }

    .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
    }

    .hero-btns,
    .cta-btns {
    flex-direction: column;
    align-items: flex-start;
    }

    .cta-btns {
    align-items: center;
    }
}