/* 1. RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333; /* Texto escuro para fundo claro */
}

html.modal-open,
body.modal-open {
    overflow: hidden;
    overscroll-behavior: none;
    height: 100dvh;
}

body.modal-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

:root {
    /* Updated dynamically by JS to match fixed header height */
    --navbar-offset: 78px;
}

section[id] {
    scroll-margin-top: calc(var(--navbar-offset) + 12px);
}

/* 2. HEADER (NAVBAR) */
.navbar {
    display: grid;
    /* reserve two action columns on the right: language + toggle */
    grid-template-columns: auto 1fr auto auto;
    grid-template-areas: "logo nav actions actions2";
    align-items: center;
    padding: 15px 8%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Container da Logo */
.logo {
    display: flex;
    align-items: center;
    height: 100%; /* Garante que ocupe a altura da navbar */
    grid-column: 1;
    grid-row: 1;
}

/* A Imagem da Logo em si */
.logo img {
    height: 45px; /* Altura ideal para navbars modernas */
    width: auto;  /* MantÃ©m a proporÃ§Ã£o sem achatar */
    border-radius: 25px; /* Bordas arredondadas para um visual mais suave */
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Efeito sutil ao passar o mouse */
.logo img:hover {
    transform: scale(1.05);
}

.navbar ul {
    display: flex;
    list-style: none;
}

/* BotÃ£o de toggle (trÃªs pontinhos) - escondido por padrÃ£o */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #555;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 6px;
    margin-right: 0;
    grid-column: 4; /* rightmost action column */
    grid-row: 1;
}

/* Language switch (flag + code) */
.lang-switch {
    position: relative; /* relativo para posicionar o dropdown internamente */
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1250;
    grid-column: 3; /* second-to-right column */
    grid-row: 1;
}
.lang-switch .lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 6px 12px 6px 8px;
    border-radius: 999px;
    border: 1px solid #e6e7eb;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
    color: #1f2937;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lang-switch .lang-toggle:hover {
    transform: translateY(-1px);
    border-color: #ffc9a8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.14);
}
.lang-switch .lang-toggle:focus-visible {
    outline: 2px solid #ff9a5c;
    outline-offset: 2px;
}
.lang-switch .lang-toggle .lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff1e8;
    color: #d95f18;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.lang-switch .lang-toggle .lang-code {
    font-size: 0.82rem;
    font-weight: 800;
    color: #1f2937;
    letter-spacing: 0.08em;
}
.lang-menu {
    display: none !important;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    list-style: none;
    padding: 8px 6px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 160px;
}
.lang-menu li {
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 6px;
}
.lang-menu li:hover { background: #f5f5f5; }
.lang-menu.open { display: block; }

.lang-menu-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
}

/* Hide the caret button when not needed - keeps the language cycle button only */
.lang-menu-btn { display: none !important; }

/* Slightly tighten the lang-toggle spacing when caret is hidden */
.lang-switch .lang-toggle { padding-right: 10px; }

/* Flex ordering so logo stays left, nav centers, actions (lang/menu) align right */
.navbar > nav { justify-self: center; display: flex; grid-column: 2; grid-row: 1; }
.navbar .nav-toggle { justify-self: end; }
.navbar .lang-switch { justify-self: end; }
.navbar nav ul { gap: 22px; display:flex; align-items:center; }


/* On narrow screens keep right edge aligned with navbar padding (8%) */
@media (max-width: 900px) {
    .lang-switch { right: auto; margin-left: auto; gap: 0; }
    /* Show the mobile toggle and hide the centered nav */
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .navbar > nav { display: none; }
    /* Let JS handle precise positioning; keep simple visible fallback */
    .navbar.open > nav { display: block; z-index: 1100; background: transparent; box-shadow: none; padding: 0; }
    .navbar.open nav ul { flex-direction: column; gap: 12px; }
}

.navbar ul li {
    /* spacing handled by gap on the ul */
}

.navbar ul li a {
    text-decoration: none;
    color: #555555; /* Links cinza escuro */
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: #FF6B00; /* Hover Laranja */
}

/* 3. HERO SECTION */
.hero {
    margin-top: var(--navbar-offset);
    min-height: calc(100vh - var(--navbar-offset));
    height: calc(100vh - var(--navbar-offset));
    /* Overlay claro para o novo tema */
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5)), 
    url('images/download.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero h1 span {
    color: #FF6B00; /* Destaque Laranja */
    text-shadow: none; /* Removemos o brilho neon verde */
}

.hero p {
    font-size: 1.2rem;
    color: #555555;
    max-width: 500px;
    margin-bottom: 30px;
}

/* 4. BOTÃƒO (CTA) */
.btn-primary {
    display: inline-block;
    background-color: #FF6B00;
    color: #ffffff; /* Texto branco no botÃ£o laranja */
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e66000; /* Laranja mais profundo */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

/* 5. SERVIÃ‡OS */
.services {
    padding: 80px 8%;
    text-align: center;
    background-color: #fcfcfc; /* Fundo levemente off-white */
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.services h2 span {
    color: #FF6B00;
}

.subtitle {
    color: #777;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* 6. SERVICE CARDS */
.service-card {
    background: #ffffff; 
    border: 1px solid #eee; /* Borda bem clarinha */
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #FF6B00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.1);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #fff5ed; /* Laranja bem clarinho de fundo */
    color: #FF6B00; /* Ãcone Laranja */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}

.properties {
    padding: 88px 8% 96px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.properties .container {
    max-width: 1240px;
}

.properties h2 {
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    color: #151515;
    margin-bottom: 10px;
}

.properties h2 span {
    color: #FF6B00;
}

.properties .subtitle {
    max-width: 760px;
    margin-bottom: 36px;
    color: #666f7a;
    line-height: 1.55;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.property-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.property-header {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.property-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

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

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: #FF6B00;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.property-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.property-body h3 {
    font-size: 1.4rem;
    color: #121212;
    margin: 0;
}

.property-body .location {
    font-size: 0.95rem;
    color: #667085;
    margin: 0;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.property-body .location i {
    color: #FF6B00;
    margin-top: 2px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.property-features {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid #efefef;
}

.property-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #344054;
}

.property-features i {
    color: #3b82f6;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 12px 14px;
    border: 1.5px solid #FF6B00;
    color: #FF6B00;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-outline:hover {
    background: #FF6B00;
    color: #ffffff;
}

.view-all {
    margin-top: 36px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.view-all .btn-primary {
    background-color: #FF6B00;
    color: #ffffff;
    padding: 15px 38px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.28);
    transition: 0.25s ease;
    display: inline-block;
}

.view-all .btn-primary:hover {
    background-color: #e66000;
    transform: translateY(-2px);
}

/* Fundo do Modal */
.modal {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 12px 20px;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.24s ease;
}

/* Caixa Branca */
.modal-content {
    background-color: #fff;
    margin: 0 auto;
    padding: 30px;
    width: 100%;
    max-width: 500px; /* Largura controlada como na foto */
    max-height: calc(100dvh - 36px);
    overflow-y: auto;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(20px) scale(0.98);
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.modal.is-open .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-header h2 { font-size: 1.6rem; color: #1a1a1a; margin-bottom: 5px; }
.modal-header .location { color: #666; font-size: 0.9rem; margin-bottom: 15px; }

/* Imagem - Ajuste Crucial */
.modal-img-container {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.modal-nav:hover {
    background: rgba(0, 0, 0, 0.65);
}

.modal-nav.prev { left: 10px; }
.modal-nav.next { right: 10px; }
.modal-nav.is-hidden { display: none; }

#modalImg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* NÃ£o deixa a imagem esticar */
    cursor: zoom-in;
}

.modal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: -6px 0 14px;
}

.modal-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: #d2d2d2;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.modal-dot.active {
    background: #FF6B00;
    transform: scale(1.1);
}

/* Lightbox da imagem do carrossel (abre ao clicar na foto) */
.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.88);
}

.image-lightbox.is-open {
    display: flex;
}

#lightboxImg {
    max-width: min(1200px, 96vw);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.24);
}

/* Alinhamento dos Ãcones em Linha */
.modal-features {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.separator {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.modal-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.modal-body p {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
    white-space: pre-line;
}

/* BotÃ£o Laranja Largo */
.modal-footer .btn-primary {
    width: 100%;
    background-color: #FF6B00;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

@media (prefers-reduced-motion: reduce) {
    .modal,
    .modal-content {
        transition: none;
    }
}

@media (max-width: 600px) {
    .modal {
        padding: 10px 8px 14px;
    }
    .modal-content {
        max-height: calc(100dvh - 24px);
        margin-bottom: 0;
    }
}

.how-it-works {
    padding: 80px 8%;
    background-color: #fdfdfd; /* Fundo levemente off-white */
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Linha de conexÃ£o entre os cards */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.step-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2; /* Garante que os cards fiquem acima da linha */
    transition: 0.03s;
}

.step-card:hover {
    transform: translateY(-10px);
}

/*Circulo com o numero dos passos*/
.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    background: #FF6B00;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/*Ajustes para de responsividade para telas menores */
@media (max-width: 992px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr);}
    .steps-grid::before { display: none; } /* Esconde a linha de conexÃ£o em telas menores */
}

.why-choose-us {
    background-color: #FF6B00; /* Fundo laranja vibrante */
    padding: 100px 8%;
    color: #ffffff; /* Texto branco para contraste */
    overflow: hidden; /* Evita estouro lateral causado por elementos posicionados */
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Sombra mais intensa para destacar a imagem */
}

/* Card de 98% (Mantemos branco para destacar) */
.stat-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #FF6B00; /* NÃºmero em laranja para destaque */
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.85rem;
    color: #555;
}

/* ConteÃºdo de Texto em Branco */
.why-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.why-content h2 span {
    color: #ffe5d0; /* Laranja mais claro para destaque */
}

.description {
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Ãcones e BenefÃ­cios */
.feature-icon {
    background-color: rgba(255, 255, 255, 0.2); /* Fundo branco transparente */
    color: #ffffff;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; /* Aumentei para 50px para os itens nÃ£o ficarem grudados */
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    gap: 21px;
}

.feature-item h4 {
    color: #ffffff;
}

.feature-item p {
    color: #ffffff;
    opacity: 0.8;
}

/* BotÃ£o Branco para destacar no fundo Laranja */
.btn-white {
    display: inline-block;
    background: #ffffff;
    color: #FF6B00;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

/* --- SEÃ‡ÃƒO DE CONTATO (ESTRUTURA PRINCIPAL) --- */
.contact-section {
    padding: 100px 8%;
    background-color: #fcfcfc; /* Fundo leve para destacar o formulÃ¡rio */
}

/* --- SECAO DE AVALIACAO EM DESTAQUE --- */
.featured-review {
    padding: 92px 8%;
    background: radial-gradient(circle at 75% 18%, rgba(255, 107, 0, 0.14), rgba(255, 107, 0, 0) 42%), #fff7f1;
}

.featured-review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.review-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #FF6B00;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-eyebrow::before {
    content: '';
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.featured-review-copy h2 {
    margin: 0 0 22px;
    color: #1f2430;
    font-size: clamp(2rem, 3.8vw, 3.45rem);
    line-height: 1.05;
    font-weight: 300;
    max-width: 16ch;
}

.featured-review-copy h2 span {
    color: #FF6B00;
    font-weight: 700;
}

.review-quote {
    margin: 0 0 30px;
    max-width: 27ch;
    color: #687284;
    font-size: clamp(1.12rem, 2vw, 1.82rem);
    line-height: 1.45;
    font-style: italic;
    font-weight: 400;
}

.review-client-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e7eaf0;
    box-shadow: 0 14px 30px rgba(16, 24, 40, 0.08);
    max-width: 640px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff4eb, #ffd8ba);
    color: #FF6B00;
    font-size: 1.38rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.review-client-meta strong {
    display: block;
    color: #1d2433;
    font-size: 1.24rem;
    line-height: 1.15;
}

.review-client-meta span {
    display: block;
    margin-top: 4px;
    color: #6f7a8d;
    font-size: 0.95rem;
}

.review-rating {
    text-align: right;
}

.review-stars {
    color: #f3b400;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.review-rating span {
    display: block;
    margin-top: 6px;
    color: #8f98a8;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.featured-review-media {
    width: 100%;
}

.review-video-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    margin-left: auto;
    border-radius: 30px;
    padding: 10px;
    background: #fff4ec;
    border: 1px solid #ffd7bf;
    box-shadow: 0 26px 48px rgba(17, 24, 39, 0.17);
    overflow: hidden;
}

.review-video-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 22px;
    background: #0f1219;
}

.review-video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 22px;
    background: #0f1219;
}

.contact-header {
    margin-bottom: 60px;
    max-width: 700px;
}

.contact-header h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-header h2 span {
    color: #FF6B00; /* Laranja da marca */
}

/* O GRID DE ORGANIZAÃ‡ÃƒO */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Separa as colunas: 1 parte info / 1.5 partes formulÃ¡rio */
    gap: 80px; /* EspaÃ§o entre as duas colunas */
    align-items: start;
}

/* --- COLUNA DA ESQUERDA (INFORMAÃ‡Ã•ES) --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: #fff7ed; /* Fundo laranja suave */
    color: #FF6B00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0; /* Impede o Ã­cone de amassar */
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

.contact-item span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 4px;
}

.contact-item p {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

/* --- COLUNA DA DIREITA (FORMULÃRIO) --- */
.contact-form-container {
    background: #ffffff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04); /* Sombra suave premium */
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
    color: #1a1a1a;
}

/* Campos Nome e Telefone na mesma linha */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1.5px solid #f0f0f0;
    border-radius: 12px;
    background: #fdfdfd;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Efeito ao clicar no campo */
.form-group input:focus, 
.form-group textarea:focus {
    background: #ffffff;
    border-color: #FF6B00;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
    outline: none;
}

/* BOTÃƒO ENVIAR (ESTILO LIMA) */
.contact-form .btn-primary {
    width: 100%;
    background-color: #FF6B00;
    color: #ffffff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    background-color: #e66000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

/* --- RESPONSIVIDADE (TABLET E CELULAR) --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Vira uma coluna sÃ³ */
        gap: 60px;
    }

    .contact-header {
        text-align: center;
        margin: 0 auto 50px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr; /* Campos empilham no celular */
        gap: 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* Fundo e EspaÃ§amento Geral */
.main-footer {
    background-color: #0a1118; /* Azul escuro idÃªntico ao exemplo */
    color: #ffffff;
    padding: 70px 0 30px;
}

.container {
    max-width: 1200px; /* Limita a largura do conteÃºdo em telas grandes */
    margin: 0 auto;    /* Centraliza o bloco na tela */
    padding: 0 2%;     /* Cria uma margem de seguranÃ§a para nÃ£o encostar em telas pequenas */
    width: 100%;       /* Garante que ocupe o espaÃ§o disponÃ­vel atÃ© o limite */
}

/* ConfiguraÃ§Ã£o da Grid (4 colunas) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Conserto da Imagem Gigante */
.footer-logo img {
    height: 50px; /* Trava a altura para nÃ£o desorganizar */
    width: auto;
    margin-bottom: 20px;
    display: block;
    border-radius: 50px;
}

/* OrganizaÃ§Ã£o Interna das Colunas */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FF6B00; /* Laranja da sua marca */
}

/* Ãcone do Instagram Estilizado */
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #FF6B00;
}

/* Linha Final de CrÃ©ditos */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
}

/* ADICIONAIS DE RESPONSIVIDADE (seguro, nÃ£o altera regras existentes) */
/* Garantir imagens fluidas (exceto imagens de cabeÃ§alho de propriedade, que usam height:100%) */
img, .main-img, #modalImg, .logo img, .footer-logo img {
    max-width: 100%;
    height: auto;
}

/* Garantir que a logo na navbar mantenha tamanho controlado */
.logo img {
    max-height: 55px; /* limita altura mÃ¡xima da logo na navbar */
    height: auto;
}

/* Footer logo especÃ­fica (nÃ£o muito grande) */
.footer-logo img {
    max-height: 60px;
    height: auto;
}

/* Navbar mais compacta em telas pequenas */
@media (max-width: 900px) {
    .navbar {
        --mobile-menu-width: min(220px, 92vw);
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 4%;
    }
    /* Mostrar o botÃ£o e esconder o menu padrÃ£o */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        margin-left: 8px;
        padding: 0;
    }
    .lang-switch {
        right: auto;
        margin-left: auto;
        gap: 0;
    }
    .lang-switch .lang-toggle {
        height: 36px;
        width: auto;
        min-width: 90px;
        padding: 6px 10px 6px 8px;
        justify-content: center;
    }
    .navbar > nav { display: none; }
    .navbar.open > nav {
        display: block;
        position: absolute;
        top: calc(100% + 6px);
        right: 4%;
        left: auto;
        background: #ffffff;
        width: var(--mobile-menu-width);
        min-width: var(--mobile-menu-width);
        max-width: var(--mobile-menu-width);
        box-shadow: 0 10px 28px rgba(0,0,0,0.14);
        border-radius: 10px;
        z-index: 1100;
        overflow: hidden;
    }
    .navbar.open nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .navbar.open nav ul li { width: 100%; margin: 0; }
    .navbar.open nav ul li a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px 18px;
        border-bottom: 1px solid #f0f0f0;
        color: #444;
        background: transparent;
    }
    .navbar.open nav ul li:last-child a { border-bottom: none; }
    .navbar.open nav ul li a:hover { background: #fafafa; }
    .hero h1 { font-size: 3rem; }
}

/* Ajustes para tablet: reduzir colunas pesadas */
@media (max-width: 1024px) {
    .properties-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .properties-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { padding: 0 6%; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
}

/* Ajustes para celular (sempre empilhar e reduzir espaÃ§os) */
@media (max-width: 600px) {
    .navbar { padding: 8px 4%; }
    .logo img { height: 40px; max-height: 40px; }
    .nav-toggle { width: 34px; height: 34px; font-size: 1.15rem; }
    .lang-switch .lang-toggle { width: auto; min-width: 86px; height: 34px; padding: 6px 9px 6px 7px; }
    .lang-switch .lang-toggle .lang-flag { width: 22px; height: 22px; font-size: 0.65rem; }
    .lang-switch .lang-toggle .lang-code { font-size: 0.76rem; }
    .navbar ul { gap: 10px; }
    .hero {
        min-height: auto;
        height: auto;
        padding: 28px 5% 46px;
        align-items: flex-start;
    }
    .hero h1 { font-size: 1.8rem; max-width: 100%; }
    .hero p { max-width: 100%; }

    .properties-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .service-card, .step-card { padding: 20px; }
    .property-body { padding: 16px; }
    .property-body h3 { font-size: 1.2rem; }
    .property-features { gap: 14px; }
    .view-all .btn-primary { width: 100%; max-width: 320px; text-align: center; }
    .modal-content { width: 95%; max-width: 480px; }
    .contact-section { padding: 50px 5%; }
    .contact-form-container { padding: 20px; }
}

/* Pequenos dispositivos (very small) */
@media (max-width: 420px) {
    .navbar ul li a { font-size: 0.9rem; }
    .btn-primary { padding: 12px 22px; }
    .view-all .btn-primary { padding: 12px 28px; }
    .step-icon { font-size: 2rem; }
}

/* CorreÃ§Ã£o: remover faixa branca lateral causada por overflow */
html, body {
    overflow-x: hidden; /* evita qualquer overflow horizontal inesperado */
}

/* Garante que a navbar fixa cubra toda a largura da viewport */
.navbar {
    left: 0;
    right: 0;
}

/* Responsividade extra para Como Funciona e Por que escolher */
@media (max-width: 900px) {
    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 40px;
    }
    .step-card {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 24px 12px;
    }
    .why-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .why-image-container,
    .why-content {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .feature-item {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        text-align: left;
    }
    .stat-card {
        position: static;
        margin: 1rem auto;
        width: 120px;
    }
    .main-img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        margin-bottom: 16px;
    }
}

@media (max-width: 600px) {
    .steps-grid,
    .why-grid {
        gap: 1rem;
    }
    .step-card h3,
    .why-content h2 {
        font-size: 1.2rem;
    }
    .feature-item h4 {
        font-size: 1rem;
    }
    .stat-card h3 {
        font-size: 1.5rem;
    }
    .main-img {
        border-radius: 8px;
    }
    .stat-card {
        width: 100px;
        padding: 16px;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin-top: 20px !important;
        width: 100%;
    }
    .step-card {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        padding: 16px 8px !important;
        border-radius: 12px !important;
    }
    .why-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
        width: 100%;
    }
    .why-image-container,
    .why-content {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .main-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 8px !important;
        margin-bottom: 12px !important;
    }
    .stat-card {
        position: static !important;
        margin: 0 auto 12px auto !important;
        width: 90px !important;
        padding: 12px !important;
    }
    .features-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
        width: 100%;
    }
    .feature-item {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        text-align: left !important;
        padding: 0 8px !important;
    }
    .why-content h2 {
        font-size: 1.1rem !important;
    }
    .step-card h3 {
        font-size: 1rem !important;
    }
}
/* RESPONSIVIDADE DO FOOTER */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }
    .footer-col {
        align-items: flex-start;
        width: 100%;
        margin-bottom: 18px;
    }
    .footer-logo img {
        max-width: 120px;
        margin-bottom: 12px;
    }
    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 18px;
    }
}

@media (max-width: 1100px) {
    .featured-review-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .featured-review-copy h2,
    .review-quote {
        max-width: none;
    }
    .review-video-frame {
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .featured-review {
        padding: 62px 5%;
    }
    .review-client-card {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: left;
    }
    .review-rating {
        text-align: left;
    }
    .review-video-frame {
        max-width: min(100%, 360px);
        border-radius: 22px;
    }
    .review-video-frame img,
    .review-video-frame video {
        border-radius: 15px;
    }
}


/* Ordenacao mobile: logo esquerda, idioma centro-direita, menu no canto direito */
@media (max-width: 900px) {
    .navbar .logo { order: 1; }
    .navbar .lang-switch { order: 2; margin-left: auto; }
    .navbar .nav-toggle { order: 3; margin-left: 8px; }
    .navbar > nav { order: 4; }
}

/* Visual refresh - header, hero, cards and CTA */
:root {
    --brand: #ff6b00;
    --brand-strong: #e55c00;
    --brand-soft: #fff1e6;
    --ink: #131722;
    --text-muted: #5b6473;
    --surface: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 15% -10%, rgba(255, 107, 0, 0.11), rgba(255, 107, 0, 0) 34%),
        linear-gradient(180deg, #fffdfa 0%, #ffffff 30%);
    color: var(--ink);
}

.navbar {
    padding: 12px 6%;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo img {
    height: 48px;
    max-height: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.25);
}

.navbar ul li a {
    color: #3c4554;
    font-weight: 600;
    font-size: 0.97rem;
    position: relative;
    padding-bottom: 4px;
}

.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: 0 auto;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transition: width 0.22s ease;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #3b4251;
    background: #fffaf5;
    border: 1px solid #ffe2cc;
    box-shadow: 0 6px 14px rgba(255, 107, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    background: #fff4ea;
    box-shadow: 0 10px 18px rgba(255, 107, 0, 0.2);
}

.lang-switch .lang-toggle {
    min-width: 106px;
    height: 42px;
    padding: 6px 12px 6px 8px;
    border-color: #ffe0cb;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
    box-shadow: 0 7px 18px rgba(255, 107, 0, 0.15);
}

.lang-switch .lang-toggle:hover {
    border-color: #ffc89f;
    box-shadow: 0 10px 22px rgba(255, 107, 0, 0.2);
}

.lang-switch .lang-toggle .lang-flag {
    background: #ffe8d7;
    color: var(--brand-strong);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(560px, calc(100vh - var(--navbar-offset)), 860px);
    height: auto;
    padding: clamp(64px, 10vw, 112px) 6%;
    align-items: center;
    background:
        linear-gradient(112deg, rgba(10, 15, 24, 0.74) 8%, rgba(10, 15, 24, 0.34) 52%, rgba(10, 15, 24, 0.15) 78%),
        url("images/download.jpg");
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    width: min(700px, 72vw);
    height: min(700px, 72vw);
    right: -16%;
    top: -26%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.23), rgba(255, 107, 0, 0) 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.83);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 22px 46px rgba(13, 17, 28, 0.22);
}

.hero h1 {
    margin-bottom: 14px;
    max-width: 13.5ch;
    font-size: clamp(2.05rem, 5.4vw, 4.1rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--brand);
}

.hero p {
    margin-bottom: 24px;
    max-width: 52ch;
    color: #3f4a5c;
    font-size: clamp(1rem, 1.5vw, 1.17rem);
    line-height: 1.62;
}

.btn-primary {
    border: 0;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #ff7f2f 0%, var(--brand) 62%, #de5500 100%);
    box-shadow: 0 14px 30px rgba(255, 107, 0, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: saturate(1.06);
    box-shadow: 0 18px 34px rgba(255, 107, 0, 0.33);
}

.btn-primary:focus-visible,
.btn-outline:focus-visible,
.nav-toggle:focus-visible {
    outline: 3px solid rgba(255, 107, 0, 0.35);
    outline-offset: 2px;
}

.properties {
    background:
        radial-gradient(circle at 12% -20%, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0) 33%),
        linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
}

.property-card {
    border: 1px solid #f1dfcf;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.11);
}

.property-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 107, 0, 0.42);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

.property-header {
    aspect-ratio: 16 / 11;
}

.property-header img {
    transition: transform 0.65s ease;
}

.property-card:hover .property-header img {
    transform: scale(1.055);
}

.property-gallery-indicator {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.property-gallery-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
}

.property-gallery-indicator span.active {
    background: #ffd0b1;
    box-shadow: 0 0 0 1px rgba(255, 122, 48, 0.45);
}

.property-body {
    padding: 20px;
    gap: 14px;
}

.property-body h3 {
    font-size: 1.3rem;
    line-height: 1.2;
}

.property-features i {
    color: var(--brand);
}

.btn-outline {
    border-radius: 999px;
    border-width: 1.5px;
    background: var(--brand-soft);
    color: var(--brand-strong);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 0, 0.12);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline:hover {
    transform: translateY(-1px);
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 107, 0, 0.24);
}

.view-all .btn-primary {
    border-radius: 999px;
    padding-inline: clamp(24px, 6vw, 44px);
}

@media (max-width: 900px) {
    .navbar {
        padding: 9px 4%;
    }

    .logo img {
        height: 42px;
        max-height: 42px;
    }

    .lang-switch .lang-toggle {
        min-width: 94px;
        height: 36px;
        padding: 6px 10px 6px 8px;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
    }

    .navbar.open > nav {
        top: calc(100% + 9px);
        border: 1px solid #ffe2ce;
        border-radius: 14px;
        box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
    }

    .navbar.open nav ul li a {
        font-weight: 600;
    }

    .hero {
        min-height: auto;
        padding: 34px 5% 48px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        border-radius: 20px;
        padding: 20px 18px;
    }

    .hero h1 {
        max-width: 12ch;
        font-size: clamp(1.88rem, 7.8vw, 2.7rem);
    }

    .hero p {
        font-size: 0.98rem;
        line-height: 1.54;
    }

    .properties-grid {
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 26px;
    }

    .hero-content {
        padding: 18px 16px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .property-body {
        padding: 17px;
    }
}
