/* ===== Navbar ===== */
.navbar {
  background-color: #931212;
  padding: 0.4rem 1rem;
  position: relative;
  z-index: 1;
}

/* Links de navegación */
.navbar .nav-link {
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  color: white !important;
  text-decoration: none;
  transition: 0.3s;
}
.navbar .nav-link:hover {
  color: black !important;
}

/* ===== Google Maps ===== */
.maps {
  text-align: center;
}
.maps iframe {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer */
.liston-negro {
  background-color: rgb(233, 230, 230);
  width: 100%;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-link {
  color: #931212;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
}

.espacio {
  word-spacing: 5px;
}

/* Tipografía */
.texto {
  color: #931212;
}

.textos {
  color: #931212;
  text-decoration: none;
  margin: 0 5px;
}
.textos:hover {
  text-decoration: underline;
}

/* ===== Formularios ===== */
.formu {
  background-color: #fdfdfd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form {
  width: 100%;
  max-width: 400px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #000000;
  font-size: 14px;
  resize: none;
}

#contact-form button {
  background-color: #931212;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
#contact-form button:hover {
  background-color: #b71c1c;
}

/* ===== Títulos ===== */
.Con h1 {
  font-size: 2rem;
}

/* ===== Mensajes de error ===== */
#email-error {
  color: red;
  font-size: 13px;
  display: none;
}

/* ===== Responsividad ===== */
@media (max-width: 767px) {
  .liston-negro {
    flex-direction: column;
    text-align: center;
  }
  .liston-negro .espacio {
    margin: 10px 0;
  }
  .formu {
    padding: 15px;
  }
  #contact-form button {
    width: 100%;
  }
}
