:root {
  --color1: #ea85a6;
  --color2: #e00074;
}
body {
  font-size: 1.1rem;
  color: #fff;
  background-image: url(../img/bg.png);
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.landing .navbar {
  padding: 0 1rem;
}
.landing .navbar-brand {
  padding: 20px 0;
}
.landing .navbar-toggler {
  margin-top: 20px;
  background-color: transparent;
  color: var(--color2);
  padding: 8px 20px;
}
.landing .navbar-nav {
  gap: 15px;
  background: var(--color2);
  border-radius: 15px 15px 0px 0px;
}
.landing .navbar-nav .nav-link {
  border-radius: 0;
  color: #fff;
  opacity: 0.8;
  padding: 8px 25px;
  font-size: 1em;
  text-transform: uppercase;
}
.landing .navbar-nav .nav-link.active {
  border-bottom: 0;
  border-color: #fff;
  opacity: 1;
}
h1,
h2,
h4 {
  color: var(--color2);
  font-weight: bold;
}
h3 {
  color: var(--color2);
  font-weight: bold;
}
h2 {
  font-size: 1.5em;
  line-height: 1.5em;
  border-bottom: 2px solid var(--color2);
  margin-bottom: 20px;
}
.main {
  background-color: rgb(255 123 180 / 90%);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-player {
  max-width: 960px;
  margin: 0 auto;
}
.pink {
  background-color: #b95589;
  color: #2f3537;
  text-align: center;
  display: flex;
  padding: 0 20px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 130px;
  font-weight: 200;
  font-size: 1.5em;
  margin-bottom: 15px;
  border-radius: 20px 0px 20px 0px;
  -webkit-border-radius: 20px 0px 20px 0px;
  -moz-border-radius: 20px 0px 20px 0px;
  -ms-border-radius: 20px 0px 20px 0px;
  -o-border-radius: 20px 0px 20px 0px;
  border-bottom: 4px solid var(--color1);
}
.pink p {
  color: #fff;
}
.btn-inscribir {
  background-color: var(--color2);
  color: #fff;
  font-size: 1.3em;
  padding: 8px 40px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: inline-block;
}
.btn-inscribir:hover {
  opacity: 0.9;
}
.btn-disabled {
  background-color: var(--color2);
  color: #fff;
  font-size: 1.3em;
  padding: 8px 40px;
  border-radius: 20px;
  font-weight: normal;
  text-decoration: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: inline-block;
  opacity: 0.6;
  outline: none;
  border-color: transparent;
}
.btn-descarga {
  background-color: #6a2247;
  color: #fff;
  font-size: 0.8em;
  padding: 4px 20px;
  font-weight: normal;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 5px;
}
.btn-descarga:hover {
  opacity: 0.7;
}
#btn-insc {
  position: relative;
}
#btn-insc.flotante {
  position: absolute;
  top: 20px;
  right: 20px;
}
.btn-archivo {
  background-color: var(--color1);
  text-align: center;
  color: #fff;
  font-size: 1.2em;
  padding: 7px 30px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}
.btn-archivo:hover {
  opacity: 0.9;
}
.proximo {
  background-color: #ffeeee;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.1em;
  gap: 10px;
  padding: 20px;
}
.proximo .azul {
  color: var(--color2);
}
.proximo .rosa {
  color: var(--color2);
}
.eventdate::first-letter {
  text-transform: uppercase;
}
.coordinador .img-container {
  border-radius: 40em;
  -webkit-border-radius: 40em;
  -moz-border-radius: 40em;
  -ms-border-radius: 40em;
  -o-border-radius: 40em;
  width: 200px;
  height: 200px;
  overflow: hidden;
  display: inline-block;
}
.coordinador .img-container img {
  width: 100%;
}
.mw-600 {
  max-width: 600px;
  margin: 0 auto;
}
footer {
  padding-bottom: 10px;
}
footer a {
  text-decoration: none;
}

.boton-oculto {
  display: none; /* Oculto por defecto */
  position: absolute; /* Posicionamiento relativo al footer */
  bottom: 50px; /* Ajusta la posición vertical dentro del footer */
  right: 20px; /* Ajusta la posición horizontal dentro del footer */
}
@media (min-width: 992px) {
  .landing .navbar-nav .nav-link.active {
    border-bottom: 5px solid #fff;
    opacity: 1;
  }
}
