﻿@charset "UTF-8";

/* header catalog */
.top-20 {
    top: calc(var(--spacing)*20)
}
/* noUi-connect */
.noUi-connect {
    background: #C4956A;
}
.property-backgroud {
    background: rgba(196,149,106,.10)
}
.property-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease;
}

.property-card:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    transform: translateY(-4px);
}

.property-card-figure {
    display: block;
    position: relative;
    overflow: hidden;
}

.property-card-figure img {
    width: 100%;
    height: auto;
    transition: transform .35s ease;
}

.property-card:hover .property-card-figure img {
    transform: scale(1.04);
}

.property-card-body {
    padding: 16px 16px 18px;
}

.property-card-price {
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
    color: #282828;
}

.property-card-town {
    margin-top: 6px;
    color: rgba(40,40,40,.65);
    font-weight: 600;
}

.property-card-meta {
    display: flex;
    gap: 13px;
    margin-top: 14px;
    flex-wrap: wrap;
}

/* Icon pill + hover effect */
.property-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(196,149,106,.25);
    transition: transform .2s ease, background .2s ease;
    cursor: default; /* para que el hover sea “de UI”, no de link */
}

.property-meta-item .icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform .2s ease;
}

.property-meta-value {
    font-weight: 700;
    color: #282828;
    font-size: 14px;
}

.property-meta-item:hover {
    transform: translateY(-2px);
    background: rgba(196,149,106,.18);
}

.property-meta-item:hover .icon {
    transform: scale(1.08);
}


/* Hover suave para las cards del blog (añádelo a style.css o a tu css custom) */
.post-classic--hover {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 14px;
    transition: box-shadow .25s ease, transform .25s ease;
}

.post-classic--hover:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,.14);
    transform: translateY(-3px);
}

.post-classic--hover .post-classic-figure {
    border-radius: 8px;
    overflow: hidden;
}

.post-classic--hover .post-classic-figure img {
    transition: transform .35s ease;
}

.post-classic--hover:hover .post-classic-figure img {
    transform: scale(1.04);
}

.service-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #C4956A;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease;
}

.service-card:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    transform: translateY(-4px);
}

.service-card:hover .service-card-figure img {
    transform: scale(1.04);
}

.service-card-body {
    padding: 16px 16px 18px;
}
.service-card-text {
    font-weight: 500;
    color: #C4956A;
}

.form-validation {
    font-size: 14px;
    line-height: 14px
}