/* ========================= */
/* VARIABLES GLOBALES */
/* ========================= */

:root {
  --azul: #0d6efd;
  --azul-oscuro: #0a58ca;
  --naranja: #ff7a00;
  --blanco: #ffffff;
  --gris: #f4f6f9;
  --negro: #1c1c1c;
}

/* ========================= */
/* ESTILOS GENERALES */
/* ========================= */

body {
  font-family: "Poppins", sans-serif;
  background: var(--gris);
  color: var(--negro);
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
  transition: 0.3s ease;
  background-color: rgba(255, 255, 255, 0.6) !important;
}

.navbar .nav-link {
  font-weight: 500;
  margin-left: 10px;
}

.navbar .nav-link:hover {
  color: var(--naranja) !important;
}

/* ========================= */
/* HERO CAROUSEL */
/* ========================= */

.carousel-item img {
  height: 60vh;
  object-fit: cover;
  /*filter: brightness(0.9);*/
}

.carousel-caption {
  bottom: 30%;
}

.carousel-caption h1 {
  font-size: 3.2rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* ========================= */
/* BOTONES */
/* ========================= */

.btn-primary {
  background-color: var(--azul);
  border: none;
}

.btn-primary:hover {
  background-color: var(--azul-oscuro);
}

.btn-warning {
  background-color: var(--naranja);
  border: none;
  color: white;
}

.btn-warning:hover {
  background-color: #e66a00;
}

/* ========================= */
/* CARDS */
/* ========================= */

.card {
  border: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ========================= */
/* SECCIONES */
/* ========================= */

section {
  scroll-margin-top: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--azul);
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--naranja);
  display: block;
  margin: 10px auto;
}

/* ========================= */
/* NOTICIAS */
/* ========================= */

#noticias .card img {
  height: 200px;
  object-fit: cover;
}

/* ========================= */
/* OFERTA ACADEMICA */
/* ========================= */

#cursos .card i {
  transition: 0.3s;
}

#cursos .card:hover i {
  transform: scale(1.2);
  color: var(--azul);
}

/* ========================= */
/* PLATAFORMA EDUCATIVA */
/* ========================= */

#plataforma {
  background: linear-gradient(135deg, var(--azul), var(--azul-oscuro));
}

/* ========================= */
/* ESTADISTICAS */
/* ========================= */

.counter {
  font-size: 3rem;
  color: #0d6efd;; /*white;*/
}

/* ========================= */
/* CONTACTO */
/* ========================= */

form {
  border-radius: 12px;
}

form .form-control {
  border-radius: 8px;
  padding: 10px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer {
  background: #111;
}

footer a {
  color: #ccc;
  transition: 0.3s;
}

footer a:hover {
  color: var(--naranja);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption {
    bottom: 20%;
  }

}