@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
/* sass/utilities/_variables.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: #fcfcfc;
  color: #565656;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  height: 60px;
  object-fit: contain;
}
.logo-img-login {
  height: 40px;
}

.logo {
  color: #7FB3D5;
  font-size: 22px;
  font-weight: 600;
}
.logo span {
  color: #888;
  font-weight: 400;
}

.navbar .nav-link.active {
  color: #7FB3D5;
  font-weight: 600;
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
  padding: 40px 0;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer .footer-column {
  min-width: 220px;
}
.footer .footer-column h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .footer-column p {
  font-size: 14px;
  margin-bottom: 4px;
}
.footer .footer-redes {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .footer-redes img {
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.footer .footer-redes img:hover {
  opacity: 1;
}

.btn-login {
  border: 1.5px solid #7FB3D5;
  padding: 6px 18px;
  border-radius: 20px;
  color: #7FB3D5;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-login:hover {
  background-color: #7FB3D5;
  color: #ffffff;
}

.btn-turno {
  background-color: #7FB3D5;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: background 0.3s ease;
}
.btn-turno:hover {
  background-color: #5fa0c9;
  color: white;
}

.btn-cancelar-rojo {
  background-color: #d9434e;
  color: white;
  border: none;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-cancelar-rojo:hover {
  background-color: #882830;
}

.form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-login {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
.form-cancelar {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.form-control {
  border: 1px solid #ced4da;
  padding: 10px;
}

.text-primary-custom {
  color: #7FB3D5 !important;
}

.min-vh-80 {
  min-height: 80vh;
}

.main {
  padding: 60px 0;
}

.hero-section {
  text-align: center;
  padding: 100px 20px;
}

.category-row {
  background-color: #f0f7fb;
  color: #7FB3D5;
  font-weight: 600;
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* RESPONSIVE DESIGN  */
@media (max-width: 992px) {
  .footer .footer-container {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .header .logo-wrapper {
    justify-content: center;
    margin-bottom: 15px;
  }
  .footer .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-redes {
    justify-content: center;
    margin-top: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
