:root {
    --brand-900: #2f221b;
    --brand-700: #6b3d2a;
    --brand-600: #9b5731;
    --brand-500: #c96d3a;
    --brand-100: #f4e9df;
    --olive-700: #3b4a3f;
    --wa-700: #187a42;
    --wa-600: #1f8f4d;
    --wa-500: #25d366;
    --wa-100: rgba(37, 211, 102, 0.08);
    --sand-50: #f9f6f1;
    --sand-100: #f3efe9;
    --sand-200: #e5ded4;
    --text-900: #1f1a16;
    --text-700: #4a413a;
    --text-500: #5e5650;
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 20px 45px rgba(31, 26, 22, 0.12);
    --shadow-card: 0 12px 30px rgba(31, 26, 22, 0.14);
}

body.site {
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    background: var(--sand-50);
    color: var(--text-900);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.4px;
}

a {
    color: inherit;
}

a:hover {
    color: inherit;
}

/* Logo central y protagonista */
.logo-central {
    height: 76px;
    width: auto;
    max-height: 76px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    padding: 2px 0;
    display: block;
}

/* NAVBAR Estilo limpio */
.navbar {
    background: #fff;
    box-shadow: 0 6px 18px rgba(31, 26, 22, 0.06);
    border-bottom: 1px solid var(--sand-200);
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.front-navbar .navbar-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.front-navbar .container {
    max-width: 1180px;
}

.front-navbar .navbar-nav {
    gap: 10px;
}

.front-navbar .nav-link {
    color: var(--text-700);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    font-size: 0.84rem;
    transition: all 0.25s ease-in-out;
    padding: 0.3rem 0;
    position: relative;
}

.front-navbar .nav-link:hover,
.front-navbar .nav-link:focus {
    color: var(--brand-700);
}

.front-navbar .nav-link.active {
    color: var(--brand-700);
}

.front-navbar .nav-link:focus-visible {
    outline: 2px solid rgba(155, 87, 49, 0.35);
    outline-offset: 3px;
    border-radius: 6px;
}

.front-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand-500);
    border-radius: 999px;
    transition: width 0.25s ease;
}

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

.front-navbar .navbar-phone {
    white-space: nowrap;
}

.front-navbar .navbar-collapse {
    gap: 14px;
}

.front-navbar .navbar-actions {
    margin-left: auto;
}

.front-navbar .navbar-phone {
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    font-size: 0.85rem;
}

.front-navbar .navbar-consign {
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.card-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.listing-cta-card {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(201, 109, 58, 0.12), rgba(47, 34, 27, 0.06));
    border: 1px solid rgba(201, 109, 58, 0.22);
}

.listing-cta-card strong {
    display: block;
    color: var(--brand-900);
    margin-bottom: 4px;
}

.listing-cta-card p {
    margin: 0;
    color: var(--text-700);
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 26px;
}

.footer-cta strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.footer-cta p {
    margin: 0;
    opacity: 0.88;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-cta-actions .btn-danger,
.footer-cta-actions .btn-danger:hover,
.footer-cta-actions .btn-danger:focus {
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .listing-cta-card,
    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .listing-cta-card .btn,
    .footer-cta-actions .btn {
        width: 100%;
    }
}

/* Hero Banner */
.hero {
    background-image: linear-gradient(115deg, rgba(25, 20, 16, 0.78), rgba(80, 60, 40, 0.45)), url('/img/fondo-campo.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
}

.hero-home .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 32px;
    align-items: center;
}

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

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    font-weight: 700;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.45);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.92);
}

.hero-note {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.2rem;
}

.btn-whatsapp-home {
    border: none;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    padding: 0.78rem 1.6rem;
    background: linear-gradient(135deg, var(--wa-600) 0%, var(--wa-500) 100%);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.26);
}

.btn-whatsapp-home:hover,
.btn-whatsapp-home:focus {
    color: #fff;
    background: linear-gradient(135deg, #1c8b49 0%, #1fc962 100%);
    box-shadow: 0 16px 28px rgba(37, 211, 102, 0.3);
}

.btn-brand {
    background: var(--brand-500);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.75rem 1.6rem;
    border: none;
    box-shadow: 0 10px 20px rgba(201, 109, 58, 0.3);
}

.btn-brand:hover {
    background: var(--brand-600);
    color: #fff;
}

.btn-outline-brand {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
}

.btn-outline-brand:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.search-panel {
    background: #fff;
    padding: 1.5rem 1.6rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    color: var(--text-900);
}

.search-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}

.search-panel__title {
    margin: 0;
    font-weight: 700;
    font-size: 1.18rem;
}

.search-panel__head span {
    font-size: 0.9rem;
    color: var(--text-500);
}

.search-panel .form-select,
.search-panel .form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--sand-200);
    background-color: var(--sand-50);
    font-weight: 600;
}

.btn-search {
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    background: var(--brand-600);
    border: none;
}

.btn-search:hover {
    background: var(--brand-700);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 1.6rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.92);
}

.trust-item {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.trust-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.trust-item span {
    display: block;
    line-height: 1.35;
}

.hero-lead-card {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-900);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(229, 222, 212, 0.88);
}

.hero-lead-card__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--wa-100);
    color: var(--wa-700);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.9rem;
}

.hero-lead-card h2 {
    font-size: 1.55rem;
    margin-bottom: 0.65rem;
}

.hero-lead-card p {
    color: var(--text-500);
    text-shadow: none;
    font-size: 1rem;
    margin-bottom: 1.1rem;
}

.hero-search-form .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--sand-200);
    background-color: var(--sand-50);
    font-weight: 600;
    min-height: 48px;
}

.hero-lead-card__foot {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sand-200);
    color: var(--text-500);
    font-size: 0.92rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--brand-100);
    color: var(--brand-700);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-soft {
    background: var(--sand-100);
    padding: 4rem 0;
}

.section-head {
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 0.6rem;
}

.section-subtitle {
    color: var(--text-500);
    max-width: 620px;
    margin: 0 auto;
}

.info-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.info-card h5 {
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.info-card p {
    color: var(--text-500);
    margin: 0;
}

.home-trust-band .info-card {
    border: 1px solid rgba(229, 222, 212, 0.95);
    box-shadow: 0 14px 28px rgba(31, 26, 22, 0.08);
}

.featured-home .section-subtitle {
    max-width: 700px;
}

.home-confidence {
    padding-top: 1.5rem;
}

.home-confidence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.home-confidence-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.2rem 1.3rem;
    background: #fff;
    border: 1px solid rgba(229, 222, 212, 0.95);
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(31, 26, 22, 0.06);
}

.home-confidence-icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-100);
    color: var(--brand-700);
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

.home-confidence-item h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--text-900);
}

.home-confidence-item p {
    margin: 0;
    color: var(--text-500);
    line-height: 1.55;
}

.home-featured-card {
    border: 1px solid rgba(229, 222, 212, 0.95);
    box-shadow: 0 14px 32px rgba(31, 26, 22, 0.1) !important;
}

.home-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(31, 26, 22, 0.14) !important;
}

.home-featured-image {
    height: 240px;
    border-bottom: 1px solid rgba(229, 222, 212, 0.9);
}

.home-featured-body {
    padding: 1.45rem;
}

.home-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.9rem;
}

.property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.9rem;
}

.property-specs span,
.home-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--sand-100);
    color: var(--text-700);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-featured-price {
    font-size: 1.02rem;
    margin-bottom: 1rem;
}

.featured-home .card-meta {
    font-size: 0.78rem;
    letter-spacing: 0.8px;
}

/* Navbar Toggle */
.navbar-toggler {
    z-index: 1050;
    border: none;
}

.front-navbar .navbar-toggler {
    border: 1px solid var(--sand-200);
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
    background: #fff;
}

.front-navbar .navbar-toggler:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(155, 87, 49, 0.2);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #25D366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease-in-out;
    animation: whatsappPulse 2.2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation-play-state: paused;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
    }
}

.btn-outline-danger {
    border-width: 2px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-600);
    border-color: var(--brand-600);
}

.btn-outline-danger:hover {
    background-color: var(--brand-600);
    color: #fff;
    border-color: var(--brand-600);
}

.btn-danger {
    border: none;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #d95b35 0%, #ee8a4d 100%);
    box-shadow: 0 10px 24px rgba(217, 91, 53, 0.22);
}

.btn-danger:hover,
.btn-danger:focus {
    color: #fff;
    background: linear-gradient(135deg, #cf562f 0%, #e88346 100%);
    box-shadow: 0 14px 28px rgba(217, 91, 53, 0.28);
}

.btn-danger:focus-visible {
    outline: 2px solid rgba(217, 91, 53, 0.2);
    outline-offset: 3px;
}

/* Cards de propiedades */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-card) !important;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(31, 26, 22, 0.18);
}

.card-property .card-body {
    padding: 1.6rem;
    background-color: #fff;
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-900);
}

.card-text {
    color: var(--text-500);
    font-size: 0.95rem;
}

.card-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-500);
}

.defer-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.card .text-danger {
    font-size: 1.15rem;
    color: var(--brand-600) !important;
}

/* Botón dentro de la card */
.card .btn-outline-danger {
    border-radius: 999px;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.card .btn-outline-danger:hover {
    background-color: var(--brand-600);
    color: white;
    border-color: var(--brand-600);
}

/* Etiquetas flotantes en cards */
.badge-venta,
.badge-arriendo,
.badge-destacado {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.badge-venta {
    background-color: #d1662d;
}

.badge-arriendo {
    background-color: #2f5d7f;
}

.badge-destacado {
    background-color: #3a6b45;
}

.badge-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1f1a16;
    background: #f7d36a;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.cta-band {
    background: linear-gradient(120deg, var(--brand-700), var(--olive-700));
    padding: 3.5rem 0 4rem;
    color: #fff;
}

.cta-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.cta-card h3 {
    margin: 0 0 0.6rem;
}

.cta-card p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Footer */
.footer {
    background-color: #fff;
    color: var(--text-900);
    padding: 40px 0 20px;
    font-size: 0.95rem;
    border-top: 1px solid var(--sand-200);
}

.footer a {
    color: var(--text-900);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: var(--text-900);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-section {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

.footer-section h5 {
    margin-bottom: 15px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--sand-200);
    padding-bottom: 8px;
    color: var(--text-900);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-500);
}

.footer-service-list li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-service-list strong {
    color: var(--text-900);
}

.footer-social-copy {
    margin: 0 0 14px;
    color: var(--text-500);
    line-height: 1.55;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1877f2, #1666d1);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 10px 18px rgba(24, 119, 242, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(24, 119, 242, 0.28);
    color: #fff !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid var(--sand-200);
    padding-top: 14px;
    color: var(--text-500);
}

/* Estilos específicos para el logotipo en el footer */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logo-central {
        height: 62px;
        max-height: 62px;
    }

    .front-navbar .navbar-nav {
        flex-direction: column !important;
        align-items: center;
        gap: 0.65rem;
    }

    .front-navbar .navbar-collapse {
        margin-top: 1rem;
        background: #fff;
        border: 1px solid var(--sand-200);
        border-radius: var(--radius-md);
        padding: 12px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 12px 24px rgba(31, 26, 22, 0.1);
    }

    .front-navbar .nav-link::after {
        display: none;
    }

    .hero {
        padding: 3.5rem 0 4rem;
        min-height: auto;
        text-align: center;
    }

    .hero-home .hero-shell {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }

    .hero-lead-card {
        text-align: left;
    }

    .home-confidence-grid {
        grid-template-columns: 1fr;
    }

    .search-panel__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2.6rem 0 3rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.45rem);
        margin-bottom: 0.9rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-lead-card {
        padding: 20px;
        border-radius: 22px;
    }

    .hero-lead-card h2 {
        font-size: 1.28rem;
    }

    .hero-lead-card p {
        font-size: 0.95rem;
    }

    .hero-lead-card__foot {
        font-size: 0.88rem;
    }

    .trust-row {
        margin-top: 1.15rem;
        gap: 10px;
    }

    .trust-item {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .trust-item strong {
        font-size: 0.95rem;
    }

    .trust-item span {
        font-size: 0.85rem;
    }

    .section-head {
        margin-bottom: 1.4rem;
    }

    .section-title {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
    }

    .section-subtitle {
        font-size: 0.96rem;
    }

    .section-kicker {
        font-size: 0.72rem;
        padding: 5px 11px;
    }

    .home-confidence {
        padding-top: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .home-confidence-item {
        padding: 1rem 1rem;
        gap: 12px;
        border-radius: 16px;
    }

    .home-confidence-item h3 {
        font-size: 0.98rem;
    }

    .home-confidence-item p {
        font-size: 0.92rem;
    }

    .home-featured-card {
        border-radius: 18px;
    }

    .home-featured-image {
        height: 200px;
    }

    .home-featured-body {
        padding: 1.15rem;
    }

    .property-specs,
    .home-featured-meta {
        gap: 6px;
        margin-bottom: 0.75rem;
    }

    .property-specs span,
    .home-featured-meta span {
        font-size: 0.72rem;
        padding: 4px 9px;
    }

    .home-featured-price {
        font-size: 0.98rem;
    }

    .card-cta-stack .btn {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin: 10px 0;
    }

    .footer-social-link {
        width: 100%;
        justify-content: center;
    }

    .footer-service-list li {
        margin-bottom: 10px;
    }

    .logo-section {
        margin-bottom: 20px;
    }

    .cta-card {
        text-align: center;
        justify-content: center;
    }

    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: auto;
    }

    .hero .container,
    .home-confidence,
    .featured-home {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.8px;
        padding: 5px 12px;
    }

    .hero-note {
        font-size: 0.92rem;
    }

    .hero-lead-card {
        padding: 18px;
    }

    .hero-search-form .form-select {
        min-height: 46px;
    }

    .btn-danger,
    .btn-outline-brand,
    .btn-whatsapp-home,
    .btn-search,
    .btn-outline-danger {
        min-height: 46px;
    }

    .home-confidence-grid {
        gap: 12px;
    }

    .home-confidence-item {
        align-items: flex-start;
    }

    .home-confidence-item h3 {
        line-height: 1.25;
    }

    .home-featured-card .card-title {
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .home-featured-card .card-meta {
        font-size: 0.72rem;
    }

    .home-featured-card .card-cta-stack {
        gap: 8px;
    }
}

@media screen and (max-width: 1024px) {
    .logo-central {
        height: 62px;
        padding: 0 !important;
    }
}
