@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');



h1,
h2,
h3,
h4,
h5,
h6,
.titulo,
.subtitulo,
.nav-link,
.btn,
.badge,
.form-control,
.form-select,
.form-label,
.form-text,
p,
a,
li,
span,
div, label {
  font-family: 'Raleway', sans-serif;
}


.btn-primary {
  background-color: #1a2c5b !important;
  border-color: #1a2c5b !important;
  box-shadow: none;
  outline: none;
}

.btn-outline-primary {
  color: #1a2c5b !important;
  border-color: #1a2c5b !important;
}

.btn-outline-primary:hover {
  background-color: #1a2c5b !important;
  color: white !important;
  border-color: #1a2c5b !important;
}

.text-bg-primary {
  background-color: #1a2c5b !important;
}

.text-primary {
  color: #1a2c5b !important;
}

.bg-primary {
  background-color: #1a2c5b !important;
}

.container {
  max-width: 1200px !important;
}

.titulo {
  font-size: clamp(1.5rem, 4vw, 2.1rem) !important;
  font-weight: bold;
}

.subtitulo {
  font-size: clamp(1.25rem, 4vw, 2rem) !important;
  font-weight: bold !important;
}

.decorador {
  height: 4px;
  width: clamp(100px, 50vw, 200px);
  background-color: #1a2c5b !important;
  border-radius: 10px;
  margin: 0px;
}

.bg-primary {
  background-color: #1a2c5b !important;
}

.contact-form-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 250px;
  z-index: 9999;
}


/* Animación hover */
.img-zoom {
  transition: transform 0.5s ease;
}

.img-zoom:hover {
  transform: scale(1.1);
}

/* Badge de tipo */
.badge-custom {
  background-color: #0d6efd;
  color: white;
  padding: 0.5em 0.8em;
  font-size: 0.75rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Efecto animado suave en la card */
.animate-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-hover {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 200px;
  background-size: cover;
  background-position: center;
  color: white;
}

.card-hover .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
  border-radius: 15px;
  display: flex;
  align-items: flex-end;
  /* Título al fondo */
  padding: 1rem;
}

.card-hover:hover .overlay {
  background-color: rgba(0, 0, 0, 0);
  /* Quita filtro negro al hacer hover */
}

.card-hover h5 {
  margin: 0;
  z-index: 2;
}

/* Badge fijo arriba a la derecha */
.card-hover .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

.hero {
  background-size: cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.property-card img {
  height: 200px;
  object-fit: cover;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0;
}

.seccion1 {
  background-color: #1a2c5b !important;
}

.buscar {
  background-color: #1a2c5b;
  color: white;

}