/*
Theme Name: Astra Child
Template: astra
Author: Tu nombre
Version: 1.0
Description: Tema hijo personalizado para integración con WASI
*/

/* Fuente Poppins desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Tarjeta de propiedad (opción B: diseño con sombra y hover animado) */
.propiedad {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.propiedad:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Título dentro de la tarjeta */
.propiedad h3 {
  color: #0044d4;
  margin-bottom: 8px;
  font-weight: 600;
}

/* Texto descriptivo */
.propiedad p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* Botón de acción dentro de la tarjeta */
.propiedad a.boton {
  display: inline-block;
  background-color: #0044d4;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.propiedad a.boton:hover {
  background-color: #0033aa;
}