/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Inter:wght@400;500;600&display=swap");
body {
  font-family: "poppins", "inter", sans-serif;
  color: #343a40;
  line-height: 1.6;
  overflow-x: hidden;
}

p, a, footer, .navbar {
  font-family: "inter", sans-serif;
}

li a {
  text-decoration: none;
  color: #0a1150;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: var(--transition);
}
li a:hover {
  color: #f39c12;
  transition: all 0.3s ease;
  transform: translateY(-3px);
  cursor: pointer;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 500;
  background-color: #eaedf0;
  color: #0a1150;
  padding: 2rem;
  gap: 2rem;
}
footer .footer-brandconductkids {
  max-width: 70%;
  height: 80px;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  font-family: "inter", sans-serif;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.navbar-nav {
  gap: 2rem;
  padding: 2rem 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.nav-link {
  position: relative;
  transition: var(--transition);
}
.nav-link:hover {
  color: #f39c12;
  transform: translateX(-3px);
  transition: all 0.3s ease;
}

.nav-link-active {
  border-style: none;
  transition: var(--transition);
  background-color: #1d2996;
  color: #ffffff;
  border-radius: 25px;
  padding: 10px 25px;
}
.nav-link-active:hover {
  background-color: #f39c12;
  color: #ffffff;
  transform: translateX(-3px);
  transition: all 0.3s ease;
}

.brandconductkids {
  max-width: 70%;
  height: 100px;
  transition: ease-in-out;
}
.brandconductkids:hover {
  color: #f39c12;
  transform: translateX(-3px);
  transition: all 0.3s ease;
}

.btn-custom {
  background-color: #f39c12;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background-color: #0056b3;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.blog-card-btn {
  background-color: #0056b3;
  color: #ffffff;
  border: none;
  padding: 5px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-card-btn:hover {
  background-color: #f39c12;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #f39c12;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.card-img-top {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.hero-section {
  background: linear-gradient(rgba(172, 84, 12, 0.3490196078), rgba(0, 0, 0, 0.5)), url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.bg-primary {
  background: linear-gradient(rgba(172, 84, 12, 0.3490196078), rgba(0, 0, 0, 0.5)), url("../img/psicologia.webp");
  background-size: cover;
  background-position: center;
  height: 30vh;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.bg-warning {
  background: linear-gradient(rgba(235, 114, 9, 0.3490196078), rgba(0, 0, 0, 0.5)), url("../img/banner-nuestroservicios.png");
  background-size: cover;
  background-position: center;
  height: 30vh;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.bg-info {
  background: linear-gradient(rgba(235, 114, 9, 0.3490196078), rgba(0, 0, 0, 0.5)), url("../img/banner-blogeducativo.jpg");
  background-size: cover;
  background-position: center;
  height: 30vh;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.bg-danger {
  background: linear-gradient(rgba(235, 114, 9, 0.3490196078), rgba(0, 0, 0, 0.5)), url("../img/banner-contacto.avif");
  background-size: cover;
  background-position: center;
  height: 30vh;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.text-dark {
  color: #ffffff !important;
}

.card-link {
  text-decoration: none;
  color: #0056b3;
  transition: 0.3s;
}
.card-link:hover {
  color: #f39c12;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 80px;
  }
}

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