/* Estilos generales */
body {
    background-color: #f7f9fb;
    color: #191c1e;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

/* Sombras Premium */
.property-card-shadow {
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

.premium-shadow {
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
}

/* Componentes (Botones y Tarjetas base) */
.btn-primary {
    background-color: #006c49;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background-color: transparent;
    color: #006c49;
    border: 1px solid #006c49;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

/* Galería de detalles (Bento Grid) */
.bento-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 16px;
}

@media (max-width: 768px) {
    .bento-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 400px repeat(2, 200px);
    }
}
