.btn-contact {
  display: inline-block;
  text-decoration: none !important;
  padding: 10px 20px;
  background-color: #000000; /* color azul típico */
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #ac1e1e; /* un azul más oscuro al pasar el mouse */
}

/* BOTON */
.btn-ubicaciones {
  margin-top: 60px; 
  padding: 10px 20px; 
  background-color: white; 
  color: black; 
  border: none; 
  font-size: 0.5em; 
  cursor: pointer; 
  border-radius: 5px; 
  transition: background-color 0.3s ease; 
}

.btn-ubicaciones:hover {
  background-color: darkred; 
  color: white;
}

.btn-inicia {
    background-color: darkred; 
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 5px;
}

.btn-inicia:hover {
    background-color: #cc0000; 
}
