/* ============================================================
   ELEVATE HOMES - CUSTOM STYLESHEET
   ============================================================ */

/* ============ VARIÁVEIS E RESET ============ */
:root {
    --primary-color: #1a2d4d;
    --secondary-color: #d4a574;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ============ TIPOGRAFIA ============ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============ NAVBAR / HEADER ============ */
.navbar-custom {
    background: transparent;
    backdrop-filter: none;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    box-shadow: none;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

.navbar-custom.navbar-scrolled {
    background: linear-gradient(180deg, rgba(26, 45, 77, 0.95) 0%, rgba(26, 45, 77, 0.88) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.navbar-custom .navbar-collapse.show,
.navbar-custom .navbar-collapse.collapsing {
    background: rgba(26, 45, 77, 0.94);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.logo-image {
    display: block;
    width: auto;
    height: 54px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ============ HERO SECTION ============ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.hero-subtitle {
    display: block;
    font-weight: 300;
    font-size: 2.6rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.8;
    max-width: 500px;
    font-family: 'Outfit', sans-serif;
}

/* ============ SEÇÃO: MORAR BEM ============ */
.morar-bem-section {
    background-color: var(--white);
    padding: 80px 0;
}

.morar-bem-text {
    padding-right: 3rem;
    text-align: right;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.morar-bem-section .section-description,
.morar-bem-section .section-description-small,
.morar-bem-section .section-title {
    text-align: right;
}

.section-description-small {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.morar-bem-cta {
    margin-top: 0.5rem;
}

.morar-bem-image {
    display: flex;
    justify-content: center;
}

.morar-bem-image img {
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.galeria-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    padding: 0 0 80px;
}

.galeria-card {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(26, 45, 77, 0.12);
}

.galeria-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* ============ SEÇÃO: DESTAQUES ============ */
.destaques-section {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
}

.destaque-item {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.destaque-item:hover {
    transform: translateY(-5px);
}

.destaque-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.destaque-icon i {
    font-size: 3rem;
}

.destaque-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.destaque-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============ SEÇÃO: IMÓVEIS ============ */
.imoveis-section {
    background-color: var(--white);
    padding: 80px 0;
}

.imoveis-carousel .row {
    align-items: center;
}

.imovel-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 400px;
}

.imovel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.imovel-side-card {
    height: 245px;
    border-radius: 14px;
}

.imovel-card:hover img {
    transform: scale(1.05);
}

.imovel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 39, 58, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
}

.imovel-status {
    color: var(--white);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 0.95;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

.imovel-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
    align-items: center;
    gap: 1.75rem;
}

.imovel-featured-image {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.imovel-featured-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.imovel-info {
    background-color: transparent;
    padding: 0.5rem 0;
    text-align: left;
}

.imovel-location {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    text-transform: uppercase;
}

.imovel-name {
    font-size: 2.6rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.imovel-specs {
    display: flex;
    justify-content: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
}

.imovel-specs span {
    position: relative;
}

.imovel-specs span + span::before {
    content: "|";
    color: #c4c8cf;
    position: absolute;
    left: -0.55rem;
}

.btn-imovel {
    background-color: #2d3f5c;
    color: var(--white);
    border: 2px solid #2d3f5c;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-imovel:hover {
    background-color: transparent;
    color: #2d3f5c;
}

/* ============ SEÇÃO: CONSULTORA ============ */
.consultora-section {
    background-color: var(--white);
    padding: 72px 0 88px;
    border-top: 1px solid #eef1f5;
}

.consultora-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.consultora-image img {
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.consultora-info {
    padding-right: 3rem;
    max-width: 100%;
}

.consultora-team-copy .section-heading,
.consultora-team-copy .section-body,
.consultora-team-copy .section-kicker {
    text-align: left;
}

.team-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}

.team-points div {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8edf4;
}

.team-points strong {
    color: #22344c;
    font-size: 1rem;
}

.team-points span {
    color: #6f7785;
    line-height: 1.7;
}

/* ============ SEÇÃO: CTA ============ */
.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
}

.btn-cta {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-cta:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ============ FOOTER ============ */
.footer-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.logo-image-footer {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

.logo-text-footer {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-location {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-email {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-whatsapp {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-whatsapp a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-whatsapp a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.social-icon i {
    font-size: 1.2rem;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    background: #1ebe5a;
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp i {
    font-size: 1.9rem;
    line-height: 1;
}

/* ============ RESPONSIVIDADE ============ */

/* Tablet (768px e acima) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .morar-bem-text {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: left;
    }

    .consultora-info {
        padding-right: 0;
        margin-bottom: 2rem;
        max-width: none;
    }

    .consultora-image img {
        height: 320px;
    }

    .imovel-card {
        height: 350px;
    }

    .imovel-side-card {
        height: 230px;
    }

    .galeria-card img {
        height: 280px;
    }

    .imovel-featured-card {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .imovel-featured-image img {
        height: 350px;
    }

    .imovel-info {
        padding: 0;
    }

    .footer-social {
        text-align: center !important;
        margin-top: 1.5rem;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Mobile (até 767px) */
@media (max-width: 767px) {
    .navbar-custom {
        padding: 0.75rem 0;
    }

    .navbar-custom .navbar-collapse.show,
    .navbar-custom .navbar-collapse.collapsing {
        margin-top: 0.75rem;
    }

    .logo-image {
        height: 42px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .morar-bem-section,
    .galeria-section,
    .destaques-section,
    .imoveis-section,
    .consultora-section,
    .cta-section {
        padding: 50px 0;
    }

    .destaque-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .destaque-icon {
        font-size: 2.5rem;
        height: 60px;
    }

    .destaque-icon i {
        font-size: 2.5rem;
    }

    .imovel-card {
        height: 300px;
        margin-bottom: 1rem;
    }

    .imovel-side-card {
        height: 220px;
    }

    .galeria-card img {
        height: 240px;
    }

    .imovel-featured-image img {
        height: 280px;
    }

    .imovel-specs {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .imovel-specs span + span::before {
        display: none;
    }

    .imovel-name {
        font-size: 2rem;
    }

    .consultora-image {
        justify-content: center;
    }

    .consultora-image img {
        height: 240px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .footer-section {
        padding: 2rem 0;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .footer-logo,
    .footer-contact,
    .footer-social {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-social {
        text-align: center !important;
    }

    .social-icons {
        justify-content: center;
    }

    .section-description {
        text-align: center;
    }

    .morar-bem-section .section-title,
    .morar-bem-section .section-description,
    .morar-bem-section .section-description-small {
        text-align: left;
    }

    .consultora-team-copy .section-heading,
    .consultora-team-copy .section-body,
    .consultora-team-copy .section-kicker {
        text-align: left;
    }
}

/* Extra Small (até 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .destaque-title {
        font-size: 1.1rem;
    }

    .destaque-description {
        font-size: 0.85rem;
    }

    .imovel-name {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .btn-imovel,
    .btn-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ============ UTILITÁRIOS ============ */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 1rem;
    }
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Acessibilidade */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active::after {
    width: 100%;
}

.eyebrow-light,
.section-kicker,
.mini-kicker,
.text-on-dark {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 600;
}

.eyebrow-light,
.text-on-dark {
    color: rgba(255, 255, 255, 0.82);
}

.section-kicker,
.mini-kicker {
    color: #7f8a99;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-secondary-btn {
    border-radius: 999px;
    padding: 0.72rem 1.8rem;
}

.ghost-btn {
    border-radius: 999px;
    padding: 0.72rem 1.8rem;
}

.home-intro-section,
.story-section,
.market-data-section,
.values-section,
.process-section,
.property-grid-section,
.property-listing-section,
.property-detail-section,
.detail-specs-section,
.contact-layout-section {
    padding: 96px 0;
}

.section-copy,
.listing-copy {
    max-width: 520px;
}

.section-heading {
    font-size: 2.7rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #22344c;
}

.section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #6f7785;
    margin-bottom: 1rem;
}

.text-link {
    color: #0056a6;
    font-weight: 600;
    text-decoration: none;
}

.text-link i {
    margin-left: 0.4rem;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.mosaic-card {
    overflow: hidden;
    border-radius: 22px;
    min-height: 240px;
    box-shadow: 0 22px 50px rgba(18, 32, 56, 0.12);
}

.mosaic-card-large {
    grid-row: span 2;
    min-height: 500px;
}

.mosaic-card img,
.image-panel img,
.map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insights-section {
    padding: 0 0 96px;
}

.insight-card,
.value-card,
.spec-card,
.criteria-box,
.market-stat-card {
    height: 100%;
    padding: 2rem;
    border-radius: 22px;
    background: #f7f9fc;
    border: 1px solid #e9eef5;
}

.insight-card i {
    font-size: 1.8rem;
    color: #0056a6;
    margin-bottom: 1rem;
}

.insight-card h3,
.value-card h3,
.spec-card h3,
.criteria-box h3,
.market-stat-card h3,
.property-summary-card h3,
.contact-info-card h3 {
    font-size: 1.35rem;
    color: #22344c;
    margin-bottom: 0.75rem;
}

.insight-card p,
.value-card p,
.spec-card p,
.criteria-box li,
.market-stat-card p,
.property-card p,
.property-summary-card li,
.contact-info-card li {
    color: #6d7684;
}

.market-stat-card {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: 0 18px 38px rgba(17, 30, 50, 0.07);
}

.market-hero-block {
    margin-bottom: 2rem;
}

.market-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    min-height: 220px;
    box-shadow: 0 22px 46px rgba(17, 30, 50, 0.12);
}

.market-photo-single {
    min-height: 480px;
}

.market-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.market-intro-band {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.6rem 0 0;
    border-top: 1px solid #dbe4ef;
}

.market-intro-copy h3 {
    margin-bottom: 0;
    font-size: 1.85rem;
    font-weight: 300;
    color: #22344c;
}

.market-intro-band p {
    max-width: 520px;
    margin-bottom: 0;
    color: #6f7785;
}

.market-stats-row {
    margin-bottom: 0.4rem;
}

.market-stat-number {
    display: block;
    margin-bottom: 0.9rem;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 800;
    color: #22344c;
}

.market-highlight-box {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #22344c 0%, #2d4b73 100%);
    box-shadow: 0 26px 52px rgba(17, 30, 50, 0.16);
}

.market-highlight-box h3 {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
}

.market-highlight-box p {
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 0;
}

.market-summary-list {
    margin: 0;
}

.market-summary-list li {
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

.market-summary-list strong,
.market-summary-list span {
    color: #ffffff;
}

.featured-home-section {
    padding: 0 0 96px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.featured-home-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: stretch;
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    border: 1px solid #e7edf5;
}

.featured-home-media {
    overflow: hidden;
    border-radius: 20px;
}

.featured-home-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.featured-home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-home-content h3 {
    font-size: 2.4rem;
    font-weight: 300;
    color: #22344c;
}

.featured-home-content p {
    color: #66707f;
}

.featured-tags,
.property-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0 1.5rem;
}

.featured-tags span,
.property-metrics span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: #eef3f9;
    color: #35465e;
    font-size: 0.86rem;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-list div {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e7edf5;
}

.feature-list strong {
    color: #22344c;
}

.cta-band-section {
    padding: 0 0 96px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid #dbe4ef;
    border-bottom: 1px solid #dbe4ef;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-band .cta-title {
    color: #22344c;
    margin-bottom: 0;
    max-width: 720px;
}

.cta-band .text-on-dark {
    color: #7f8a99;
}

.cta-band .btn-cta {
    background-color: #2d3f5c;
    border-color: #2d3f5c;
    color: #ffffff;
}

.cta-band .btn-cta:hover {
    background-color: transparent;
    color: #2d3f5c;
}

.cta-band .hero-secondary-btn {
    border-color: #c7d2e1;
    color: #22344c;
}

.cta-band .hero-secondary-btn:hover {
    background-color: #22344c;
    border-color: #22344c;
    color: #ffffff;
}

.page-hero {
    position: relative;
    padding: 180px 0 88px;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 30, 50, 0.8) 0%, rgba(20, 41, 70, 0.72) 100%);
}

.page-hero > .container-fluid {
    position: relative;
    z-index: 1;
}

.page-hero-sobre {
    background-image: url('images/fundotopo.png');
}

.page-hero-imoveis {
    background-image: url('images/fundotopo.png');
}

.page-hero-detail {
    background-image: url('images/fundotopo.png');
}

.page-hero-contato {
    background-image: url('images/fundotopo.png');
}

.page-hero-consultoria {
    background-image: url('images/fundotopo.png');
}

.page-hero-content {
    max-width: 760px;
}

.page-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-subtitle {
    max-width: 620px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.image-panel {
    overflow: hidden;
    border-radius: 28px;
    min-height: 540px;
    box-shadow: 0 28px 56px rgba(17, 30, 50, 0.16);
}

.process-list {
    display: grid;
    gap: 1.25rem;
}

.process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: #f7f9fc;
    border: 1px solid #e9eef5;
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22344c;
    color: #fff;
    font-weight: 700;
}

.process-step p {
    margin-bottom: 0;
}

.property-grid-controls {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.property-grid-note {
    max-width: 360px;
    font-size: 0.95rem;
    color: #6f7785;
    margin-bottom: 0;
}

.property-card {
    overflow: hidden;
    height: 100%;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e8edf4;
    box-shadow: 0 20px 45px rgba(17, 30, 50, 0.08);
}

.property-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.property-card-image {
    position: relative;
    overflow: hidden;
}

.property-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 39, 63, 0.38);
}

.property-card-overlay span {
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #22344c;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.property-card-body {
    padding: 1.5rem;
}

.property-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #7d8694;
}

.property-card h3 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #22344c;
}

.property-card-soon .property-card-image img {
    filter: blur(2px) saturate(0.65);
    transform: scale(1.03);
}

.property-card-soon .property-card-body {
    opacity: 0.78;
}

.property-card-soon .btn-imovel[disabled] {
    background: #d8e0ea;
    border-color: #d8e0ea;
    color: #6d7684;
    cursor: default;
}

.listing-row {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.listing-criteria {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.criteria-box ul,
.bullet-list {
    margin: 0;
    padding-left: 1.2rem;
}

.muted-box {
    background: #f1f4f7;
}

.property-gallery {
    display: grid;
    gap: 1rem;
}

.property-gallery-main,
.property-gallery-grid img,
.map-card {
    overflow: hidden;
    border-radius: 24px;
}

.property-gallery-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.property-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.property-gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.detail-copy {
    margin-top: 2rem;
}

.property-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 110px;
}

.property-summary-card,
.contact-info-card,
.contact-form-card {
    padding: 1.75rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e7edf5;
    box-shadow: 0 20px 44px rgba(17, 30, 50, 0.08);
}

.soft-card {
    background: #f7f9fc;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #e7edf5;
}

.summary-list li:last-child {
    border-bottom: 0;
}

.contact-layout-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.contact-form .form-label {
    font-weight: 600;
    color: #22344c;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 16px;
    padding: 0.9rem 1rem;
    border: 1px solid #dce5ef;
    box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #7aa7d8;
    box-shadow: 0 0 0 4px rgba(0, 86, 166, 0.08);
}

.contact-info-stack {
    display: grid;
    gap: 1rem;
}

.map-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.will-animate {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .hero-actions,
    .section-header-row,
    .property-grid-controls,
    .listing-row,
    .listing-criteria,
    .featured-home-card,
    .cta-band {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .mosaic-card-large {
        grid-row: auto;
        min-height: 360px;
    }

    .market-photo-single {
        min-height: 360px;
    }

    .market-intro-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-home-media img,
    .image-panel,
    .property-gallery-main img {
        min-height: 320px;
        height: 320px;
    }

    .property-sidebar {
        position: static;
    }

    .page-title {
        font-size: 3rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .home-intro-section,
    .story-section,
    .market-data-section,
    .values-section,
    .process-section,
    .property-grid-section,
    .property-listing-section,
    .property-detail-section,
    .detail-specs-section,
    .contact-layout-section {
        padding: 72px 0;
    }
}

@media (max-width: 767px) {
    .hero-actions,
    .cta-band-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .cta-band-actions .btn,
    .hero-secondary-btn,
    .ghost-btn {
        width: 100%;
        text-align: center;
    }

    .page-hero {
        padding: 150px 0 72px;
    }

    .page-title {
        font-size: 2.3rem;
    }

    .section-heading {
        font-size: 1.9rem;
    }

    .featured-home-card,
    .contact-form-card,
    .property-summary-card,
    .contact-info-card,
    .insight-card,
    .value-card,
    .spec-card,
    .criteria-box,
    .market-stat-card,
    .market-highlight-box {
        padding: 1.4rem;
    }

    .property-card-image img,
    .property-gallery-main img,
    .property-gallery-grid img,
    .map-card img {
        height: 220px;
    }

    .featured-home-media img {
        min-height: 260px;
        height: 260px;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step span {
        width: 48px;
        height: 48px;
    }

    .summary-list li {
        flex-direction: column;
    }
}
