body {
  font-family: "Nunito", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}
.bg-primary {
  background-color: #0f6ff5 !important;
}
/* Header Hero Section */
.contact-hero {
  padding: 4rem 0;
}
/* Estilos del Formulario */
.form-floating > label {
  color: #6c757d;
}
.form-control:focus {
  border-color: #0f6ff5;
  box-shadow: 0 0 0 0.25rem rgba(15, 111, 245, 0.25);
}
/* Mapa */
#map {
  height: 500px;
  width: 100%;
  border-radius: 0.5rem;
}
/* Sección de Sucursales */
.locations h2 {
  font-weight: 700;
}
/* Estilos generales para la lista de sucursales */
.locations-list {
  margin-top: 2rem;
}

.location-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.location-item h5 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #656c76;
  font-weight: 600;
}

.location-item p {
  font-size: 0.9rem;
  color: #656c76;
  margin-bottom: 1rem;
}

.location-item h6 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f6ff5;
  font-weight: 600;
}

/* Estilos para los botones con iconos */
.btn.btn-outline-success,
.btn.btn-outline-primary {
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.65rem;
  border-radius: 5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn.btn-outline-success {
  border-color: #25d366;
  color: #25d366;
}

.btn.btn-outline-success:hover {
  background-color: #25d366;
  color: #fff;
}

.btn.btn-outline-primary {
  border-color: #0d6efd;
  color: #0d6efd;
}

.btn.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}
