.botoncito{
	background-color:#466FAA;
	border-radius:50%;
	color:#FFF;
	width:30px;
	height:30px;
	text-align:center;
	padding:5px;
	margin:0 3px;
}
.botoncito_claro{
	background-color:#F2F2F2;
	border-radius:50%;
	color:#CCC;
	width:30px;
	height:30px;
	text-align:center;
	padding: 5px ;
	margin:0 3px;
}

.enlacepagina:link,.enlacepagina:visited ,.enlacepagina:active {
	color:#000; 
	font-weight:bold;
	text-decoration: none;
}
.enlacepagina:hover {
	background-color:#000;
	border-radius:50%;
	width:30px;
	height:30px;
	color:#FFF;
	padding: 5px ;
}	
.caja{		
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	width:100%;
	}
/* ===== SECCIÓN BLOG / SERVICIOS ===== */
#blog {
    padding: 70px 20px;
}

.contenedor_seccion {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* ARTÍCULO */
#blog article {
    display: flex;
    justify-content: center;
}

/* TARJETA */
#blog .recuadro {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 90%;
}

/* HOVER TARJETA */
#blog .recuadro:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

/* ICONOS 
#blog .material-symbols-outlined {
}
*/
#blog .material-symbols-outlined {   

	font-size: 34px;
    color: #ffffff;

    font-variation-settings: 
        'FILL' 1,
        'wght' 500,
        'GRAD' 0,
        'opsz' 48;
}

#blog .redondo2 {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f2a33, #2e4a5f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}



/* TEXTO */
#blog .recuadro div {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333333;
}

/* TEXTO DESTACADO */
#blog .recuadro strong {
    color: #1f2a33;
    font-weight: 700;
}

/* SEPARADOR GRIS */
.gris {
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 70px auto;
    width: 80%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    #blog {
        padding: 50px 15px;
    }

    #blog .recuadro {
        padding: 30px 22px;
    }

    #blog .redondo2 {
        width: 64px;
        height: 64px;
        font-size: 30px;
    }
}



/* ===== FOOTER GENERAL ===== */
.footer {
    /*background: #1f2a33;
		text-align:center;*/
	background-image:url(imagenes/fondopie.jpg);
	background-size:cover;	
    color: #ffffff;
    padding: 60px 20px 25px;
}

/* TÍTULO */
.footer .titulo {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

/* CONTENEDOR CENTRAL */
.footer .centro2 {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* COLUMNAS */
.footer .izquierda {
    flex: 1 1 100px;
    min-width: 100px;
}

/* ESPACIADO */
.footer .margenes {
    padding: 0 10px;
}

/* TÍTULO DE PROVINCIA */
.footer .letragrande {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    display: inline-block;
    margin-bottom: 15px;
}

/* LINKS */
.footer p {
    margin: 6px 0;
}

.footer .enlaceblanco {
    color: #d7dfe6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

/* HOVER LINKS */
.footer .enlaceblanco:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* COPY */
.footer .copy {
    text-align: center;
    font-size: 0.75rem;
    color: #fff;
    margin-top: 45px;
    border-top: 1px solid rgba(255,255,255,0.4);
    padding-top: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer .centro {
        flex-direction: column;
        gap: 30px;
    }

    .footer .titulo {
        font-size: 1.2rem;
    }

    .footer .letragrande {
        font-size: 1rem;
    }
}













/***************************************************************/
.contenido_resultados{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	width:100%;
	max-width:1500px;
	padding: 50px 0;
}


.grid-inmuebles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.card-inmueble {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  margin:10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-inmueble:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-inmueble:hover img {
  transform: scale(1.05);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #D4AF37;
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.ubicacion {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 14px;
}
.card-info {
  display: flex;
  gap: 14px;
  font-size: 0.75rem;
  color: #374151;
  margin-bottom: 16px;
}

.card-info span {
  background: #f3f4f6;
  padding: 6px 10px;
  border-radius: 4px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fecha {
  font-size: 0.7rem;
  color: #9ca3af;
}

.ver-mas {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 2px solid #D4AF37;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.ver-mas:hover {
  color: #D4AF37;
}


@media (max-width: 600px) {
	.card-img {
		width:90%;
}

}