/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* Estilo para el contenedor del grid */
.grid-propiedades {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas de igual tamaño */
    gap: 20px; /* Espaciado entre las propiedades */
    padding: 20px;
    margin-top: 20px;
}

/* Estilo para cada propiedad */
.propiedad {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

/* Efecto hover para las propiedades */
.propiedad:hover {
    transform: translateY(-10px); /* Hace que la propiedad suba al pasar el ratón */
}

/* Estilo para las imágenes de las propiedades */
.propiedad img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Títulos y textos */
.propiedad h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.propiedad p {
    font-size: 14px;
    color: #555;
}

/* Responsividad: 1 columna en pantallas pequeñas */
@media (max-width: 768px) {
    .grid-propiedades {
        grid-template-columns: 1fr; /* Solo una columna */
    }
}


