/* Fuentes */
@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF.otf")
    format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_Blk.otf")
    format("opentype");
  font-weight: 900; /* Black */
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_Bold.otf")
    format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_ExLt.otf")
    format("opentype");
  font-weight: 200; /* Extra Light */
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_Hvy.otf")
    format("opentype");
  font-weight: 800; /* Heavy */
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_Lt.otf")
    format("opentype");
  font-weight: 300; /* Light */
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_Med.otf")
    format("opentype");
  font-weight: 500; /* Medium */
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_Thin.otf")
    format("opentype");
  font-weight: 100; /* Thin */
  font-style: normal;
}

@font-face {
  font-family: "Franklin Gothic ATF";
  src: url("../../font/fis/fonnts.com-Franklin_Gothic_ATF_Ult.otf")
    format("opentype");
  font-weight: 600; /* Ultra */
  font-style: normal;
}

@font-face {
  font-family: "Fasthand";
  src: url("../../font/fis/Fasthand-Regular.ttf");
  font-weight: normal;
}

/* Popup Notificación */
.notification-popup-container {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #73737375;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: none;
  visibility: hidden;
}

.notification-popup-container.popup-show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.notification-popup-container-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 101;
}

.notification-popup {
  width: 585px;
  max-height: 820px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: white;
  padding-bottom: 20px;
}

.notification-popup > p:first-of-type {
  color: #0072ce;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
}

.notification-popup > p:nth-of-type(2) {
  color: #24135f;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  max-width: 90%;
}

.notification-popup > p:nth-of-type(3) {
  color: #24135f;
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
}

.notification-popup > ul {
  max-width: 85%;
  color: #24135f;
  margin-bottom: 30px;
  margin-top: 0;
  line-height: 30px;
  margin-right: 50px;
  margin-left: 50px;
  font-size: 17px;
}

.notification-popup > a {
  background: #b5bd00;
  padding: 14px 75px;
  border-radius: 10px;
  color: white;
  margin-bottom: 40px;
  text-decoration: none;
  font-size: 22px;
}

.notification-popup-video-container {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-popup-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification-popup-video {
  width: 101%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 1600px) {
  .notification-popup {
    max-height: 560px;
  }

  .notification-popup > p:first-of-type {
    margin-bottom: 0px;
  }

  .notification-popup > p:nth-of-type(2) {
    margin-bottom: 10px;
  }

  .notification-popup > ul {
    line-height: 18px;
  }
}

@media (max-width: 1440px) {
  .notification-popup {
    width: 470px;
  }
  /*
    .notification-popup-video-container {
        height: 250px;
    }
     */

  .notification-popup-video-container img {
    width: 100%;
    height: 100%;
  }

  .notification-popup > p:first-of-type {
    font-size: 23px;
    margin: 10px 20px;
  }

  .notification-popup > p:nth-of-type(2) {
    font-size: 23px;
    margin: 10px 20px;
  }

  .notification-popup > p:nth-of-type(3) {
    font-size: 23px;
    margin: 10px 20px;
  }

  .notification-popup > ul {
    line-height: 20px;
    margin-right: 40px;
    margin-left: 40px;
    font-size: 15px;
  }

  .notification-popup > a {
    font-size: 20px;
    padding: 10px 35px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1000px) {
  .notification-popup {
    width: 400px;
  }

  .notification-popup > p:first-of-type {
    font-size: 18px;
    margin-right: 40px;
    margin-left: 40px;
  }

  .notification-popup > p:nth-of-type(2) {
    font-size: 18px;
    padding-right: 40px;
    padding-left: 40px;
  }

  .notification-popup > p:nth-of-type(3) {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .notification-popup {
    padding-bottom: 0;
  }

  .notification-popup-video-container {
    height: 150px;
  }

  .notification-popup > p:first-of-type {
    margin: 25px 20px;
  }

  .notification-popup > p:nth-of-type(2) {
    padding-right: 20px;
    padding-left: 20px;
  }

  .notification-popup > p:nth-of-type(3) {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .notification-popup > a {
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  .notification-popup {
    width: 85%;
  }

  .notification-popup-video-container img {
    height: 100%;
  }

  .notification-popup > ul {
    margin-right: 10px;
    margin-left: 10px;
    line-height: 25px;
    margin-bottom: 5px;
  }

  .notification-popup > p:nth-of-type(3) {
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .notification-popup > p:nth-of-type(2) {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 0px;
  }

  .notification-popup > p:first-of-type {
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 0 30px;
    margin-right: 5px;
    margin-left: 5px;
    font-size: 14px;
  }

  .notification-popup-video-container {
    height: 130px;
  }

  .notification-popup > a {
    padding: 10px 10px;
    margin-bottom: 15px;
    font-size: 15px;
  }

  .notification-popup > ul {
    font-size: 13px;
  }
}

/* Principal */

body {
  font-family: "Franklin Gothic ATF", serif;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Franklin Gothic ATF", serif;
}

main {
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  background-color: transparent;
  overflow: hidden;
}

footer {
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.button-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  border-radius: 10px;
  background-color: #b5bd00;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.home-header-info .button-main {
  font-weight: bold;
}

.button-main img {
  margin-left: 10px;
}

.button-main:hover {
  background-color: #00af66;
  color: #fff;
}

.button-main-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  border-radius: 10px;
  background-color: #24135f;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button-main-dark img {
  margin-left: 10px;
}

.button-main-dark:hover {
  background-color: #fff;
  color: #24135f;
}

.button-main-dark img {
  transition: filter 0.3s ease;
}

.button-main-dark:hover img {
  filter: invert(44%) sepia(27%) saturate(366%) hue-rotate(33deg)
    brightness(92%) contrast(90%);
}

.floating-div {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 50;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-button {
  z-index: 50;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 30px;
  left: 20px;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #ffffff;
  background: #0072ce;
  box-shadow: #00000026 0 4px 8px 0;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px 20px;
  width: fit-content;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pass {
  background-color: #00af66;
  bottom: 75px;
}

.floating-button-code {
  background-color: #00af66;
}

.floating-button:hover {
  transform: translateY(-5px);
}

.floating-button img {
  margin-right: 10px;
  width: 16px;
}

.floating-code {
  background-color: white;
  border-radius: 15px;
  padding: 25px;
  box-sizing: border-box;
  width: 220px;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbcbcb;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.floating-code.visible {
  display: flex;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.floating-code > div label:nth-of-type(1) {
  color: #000b1c;
  font-size: 16px;
  font-weight: 400;
}

.floating-code > div label:nth-of-type(2) {
  color: #000b1c;
  font-size: 20px;
  font-weight: 700;
}

.floating-div-button {
  border-radius: 8px;
  background: #b5bd00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  height: 40px;
}

.floating-code > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  text-align: center;
  position: relative;
}

.floating-message {
  position: absolute;
  font-size: 12px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bbva__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  line-height: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding-right: 15px;
}

.bbva__link > img {
  width: 63px;
  height: 63px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .floating-div {
    bottom: 20px;
    left: 20px;
  }

  .floating-button {
    padding: 0;
    justify-content: center;
    height: 53px;
    width: 53px;
    align-items: center;
    border-radius: 50px;
    bottom: 20px;
    right: 20px;
  }

  .pass {
    bottom: 80px;
    height: auto;
    width: 120px;
    border-radius: 10px;
  }

  .pass img {
    margin-left: 7px !important;
  }

  .floating-button span {
    display: none;
  }

  .floating-button img {
    width: 26px;
    height: 40px;
    margin-left: 12px;
    margin-top: 3px;
  }

  .floating-button.floating-button-code img {
    margin-left: 13px;
    margin-top: 0;
  }

  .bbva__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 8px;
    line-height: 8px;
  }

  .bbva__link > img {
    width: auto;
    height: 55px;
    object-fit: contain;
  }
}

/* Menú de inicio */

.nav-bar-container {
  max-width: 1400px;
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 50;
  padding: 0 30px;
  box-sizing: border-box;
}

.sub-header {
  height: 56px;
  display: flex;
  justify-content: space-between;
  transition: height 0.3s ease, opacity 0.3s ease;
  padding: 7px 0;
}

.sub-header a {
  text-decoration: none;
  color: white;
  font-size: 10px;
}

.sub-header > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sub-header > div:nth-of-type(2) img {
  height: 30px;
}

.sub-header-logos img {
  width: auto;
  height: 24px;
}

.sub-header-buttons {
  display: flex;
  gap: 15px;
}

.sub-header-buttons > a {
  width: 110px;
  height: 40px;
  text-decoration: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease-in-out;
}

.sub-header-buttons > a:nth-of-type(1) {
  background: linear-gradient(90deg, #0072ce 0%, #24135f 100%);
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.sub-header-buttons > a:nth-of-type(1):hover {
  background: white !important;
  color: #24135f !important;
}

.sub-header-buttons > a img {
  width: 70%;
}

.nav-language {
  color: white;
  font-size: 13px;
  font-weight: 200;
}

.nav-language a {
  color: white;
  font-size: 15px;
  font-weight: 200;
}

.opened_mobile {
  backdrop-filter: blur(10px);
}

.nav-language a.active {
  font-weight: 500;
}

.nav-bar {
  height: 60px;
  padding: 15px 20px 15px 20px;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.nav-logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-logo img {
  margin-right: 20px;
}

.nav-logo p {
  width: 100px;
  color: #24135f;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links > div {
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 18px;
}

.nav-link {
  color: #24135f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 20px;
  line-height: normal;
  white-space: nowrap;
}

.nav-link.active {
  font-weight: 700;
}

.nav-link.expand {
  position: absolute;
  top: 24px;
  left: 8px;
  height: 0;
  background-color: white;
  box-shadow: #00000012 0 4px 8px 0;
  border-radius: 10px;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.5s ease;
  z-index: 49;
  opacity: 0;
  display: flex;
}

.nav-link-expand-arrow1,
.nav-link-expand-arrow2,
.nav-link-expand-arrow3 {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 6px;
  right: -17px;
  transition: transform 0.3s ease;
}

.nav-link-expand:hover .nav-link-expand-arrow1,
.nav-link-expand:hover .nav-link-expand-arrow2,
.nav-link-expand:hover .nav-link-expand-arrow3 {
  transform: rotate(-90deg);
}

.nav-link-expand1:hover .nav-link.expand,
.nav-link.expand:hover {
  height: 175px;
  margin-bottom: 5px;
  display: flex;
  opacity: 1;
}

.nav-link-expand3:hover .nav-link.expand,
.nav-link.expand:hover {
  height: 90px;
  margin-bottom: 5px;
  display: flex;
  opacity: 1;
}

#link_expand {
  width: 160px;
}

.nav-link-expand2:hover .nav-link.expand,
.nav-link.expand:hover,
#link_expand:hover {
  height: 90px;
  margin-bottom: 5px;
  display: flex;
  opacity: 1;
}

.nav-link.expand a {
  font-size: 12px;
  text-decoration: none;
  color: #24135f;
  padding: 9px 16px;
  margin-bottom: 3px;
  display: flex;
  height: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 300ms ease-in-out;
}

.nav-link.expand a:hover {
  opacity: 0.5;
}

.nav-button-container {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}

.nav-button-floating-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  top: 30px;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.nav-button-container:hover .nav-button-floating-container {
  height: 330px;
}

.nav-button-container:hover .button-main > img {
  transform: rotate(-90deg);
}

.nav-button-container img {
  transition: transform 0.5s ease;
}

.nav-button-container > a {
  width: 110px;
  background-color: #0072ce;
  color: white;
}

.nav-button-container > a:hover {
  background-color: #0072ce !important;
}

.nav-button-floating-container > a {
  width: 110px;
}

.nav-button-floating-container > a:nth-of-type(1) {
  margin-top: 20px;
}

.nav-button-floating-container > a:last-of-type {
  margin-bottom: 20px;
}

.nav-responsive-button img {
  width: 20px;
}

.nav-responsive-button {
  display: none;
}

.header-mobile-menu-container {
  display: none;
  background-color: rgba(225, 225, 225, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 40;
  backdrop-filter: blur(10px);
}

.nav-links > .nav-button-container {
  display: none;
}

.show {
  font-weight: 400;
}

.show-2 {
  font-weight: 800;
  font-size: 15px;
}

.show-link {
  font-weight: 200;
}

@media (max-width: 1400px) {
  .nav-links {
    gap: 30px;
  }

  .nav-link {
    font-size: 12px;
  }

  .button-main {
    padding: 10px 20px;
    font-size: 16px;
  }

  .nav-bar {
    height: 55px;
  }

  .nav-logo p {
    font-size: 14px;
  }

  .sub-header {
    height: 46px;
  }

  .sub-header-buttons > a {
    width: 80px;
    height: 34px;
  }

  .sub-header-buttons > a:nth-of-type(1) {
    font-size: 12px;
  }

  .sub-header-buttons > a img {
    width: 70%;
  }
}

@media (max-width: 950px) {
  .nav-links {
    flex-direction: column;
    align-items: start;
    position: fixed;
    right: 0;
    top: 70px;
    gap: 17px;
    display: none;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    z-index: 100;
    border-radius: 15px;
  }

  .nav-button-container {
    display: none;
    min-width: 0;
  }

  .nav-link {
    font-size: 17px;
    margin-left: 0px;
  }

  .nav-responsive-button {
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .nav-bar {
    padding: 15px 30px 15px 30px;
    width: 100%;
  }

  .nav-bar > .nav-button-container {
    display: none;
  }

  .nav-links > .nav-button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .nav-link-expand {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .nav-link-expand:hover .nav-link.expand,
  .nav-link.expand:hover {
    height: auto;
    opacity: unset;
  }

  .nav-link.expand {
    position: initial;
    height: auto;
    margin: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.5s ease;
    z-index: 49;
    opacity: 1;
  }

  #link_expand,
  #link_expand1,
  #link_expand-campus {
    height: 0px;
    background-color: transparent;
    box-shadow: none;
    gap: 5px;
    border-radius: 0px;
  }

  .nav-link.expand a {
    background: none;
    backdrop-filter: none;
    font-size: 16px;
    font-weight: 300;
    padding: 0;
    margin-bottom: 5px;
    justify-content: left;
  }

  #media_button {
    gap: 0px;
  }

  .nav-link-expand-arrow1 {
    display: block;
  }

  .nav-link-expand-arrow1 {
    width: 16px;
    top: 6px;
    right: 5px;
  }

  .nav-link-expand-arrow2,
  .nav-link-expand-arrow3 {
    width: 16px;
    top: 3px;
    left: 253px;
  }

  .show-2 {
    font-weight: bolder;
    font-size: 18px;
  }

  .sub-header-buttons > a:nth-of-type(1) {
    font-size: 10px;
  }
}

@media (max-width: 500px) {
  .nav-bar-container {
    padding: 0 15px;
  }

  .nav-links {
    right: 0;
    top: 65px;
  }

  .sub-header > div:nth-of-type(2) img {
    height: 11px;
  }

  .sub-header-logos img {
    width: auto;
    height: 16px;
  }

  .sub-header > div {
    gap: 10px;
  }

  .sub-header-buttons {
    gap: 10px;
  }

  .nav-language a {
    font-size: 13px;
  }
}

/* Footer */

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  margin: auto;
  background-color: #000b1c;
  color: white;
}

.footer-info {
  display: flex;
  max-width: 1600px;
  width: 100%;
  margin: auto;
}

.footer-info img {
  width: 250px;
}

.footer-info > div {
  width: 50%;
}

.footer-info > div:first-of-type {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 35px;
}

.footer-info > div:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
}

.footer-info h1 {
  color: #f5edf7;
  font-size: 72px;
  font-weight: 500;
  line-height: 72px;
  margin: 0;
}

.footer-info > div:first-of-type p {
  color: #f5edf7;
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  max-width: 430px;
  margin: 0;
}

.footer-info > div:last-of-type p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  max-width: 270px;
  margin: 0;
}

.footer-info label:first-of-type {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
}

.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.footer-logos {
  display: flex;
  gap: 10px;
  width: fit-content;
  margin-bottom: 8px;
}

.footer-logos img {
  width: 30px;
  height: 30px;
  transition: all 300ms ease;
}

.footer-logos img:hover {
  transform: scale(1.1);
}

.footer-eventsost img {
  width: 90px;
  height: 140px;
  margin-top: 30px;
}

.footer-banner {
  display: flex;
  flex-direction: column;
  max-width: 1600px;
  width: 100%;
  margin: 40px auto 0 auto;
  border-top: solid 1px #fff;
  padding-top: 50px;
  gap: 50px;
}

.footer-patrofinadores {
  display: flex;
  gap: 40px;
  width: 100%;
}

.footer-banner-section img {
  height: fit-content;
  box-sizing: content-box;
}

.footer-banner-section {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.footer-banner-section > label {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  position: absolute;
  top: -20px;
  left: 0;
}

.footer-banner-section:nth-of-type(3) {
  margin-left: auto;
  width: 130px;
}

.footer-banner a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.footer-banner a:hover {
  text-decoration: underline;
}

.footer-banner img {
  margin-left: auto;
  box-sizing: border-box;
  padding-right: 20px;
  max-height: 45px;
  width: 100%;
}

.footer-info-whatsapp {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #f5edf7;
  font-size: 22px;
  font-weight: 300;
  line-height: 36px;
  text-decoration: none;
}

.footer-info-whatsapp:hover {
  text-decoration: underline;
}

.footer-info-whatsapp img {
  height: 26px;
}

.button-footer:hover {
  background-color: #24135f;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer .button-main {
  width: 150px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0072ce 0%, #24135f 100%);
  font-weight: bold;
  font-size: 22px;
  transition: all 500ms ease-in-out;
}

footer .button-main:hover {
  background: white;
  color: #24135f;
}

footer .footer-contacto {
  line-height: 1.3;
  font-weight: 200;
}

footer .footer-contacto a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 1500px) {
  .footer-info h1 {
    font-size: 58px;
  }

  .footer-info > div:first-of-type p {
    font-size: 22px;
    line-height: 34px;
  }

  .footer-info > div:last-of-type p {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 900px) {
  .footer-info {
    flex-direction: column;
    gap: 50px;
  }

  .footer-info-whatsapp {
    white-space: nowrap;
    font-size: 20px;
    gap: 10px;
  }

  .footer-info-whatsapp img {
    height: 30px;
  }

  .footer-banner-section img {
    margin-left: 0;
  }

  .footer-banner-section:last-of-type img {
    width: auto;
    height: 50px;
  }

  .footer-info > div:last-of-type {
    align-items: baseline;
    gap: 15px;
  }

  .footer-logos {
    gap: 15px;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 20px;
    margin: auto;
    color: white;
  }

  .footer-info > div:first-of-type {
    gap: 20px;
  }

  .footer-patrofinadores {
    flex-direction: column;
    gap: 60px;
  }

  .footer-banner-section:nth-of-type(1),
  .footer-banner-section:nth-of-type(2),
  .footer-banner-section:nth-of-type(3) {
    width: 100%;
  }

  .footer-banner-section > label {
    font-size: 16px;
    top: -30px;
    font-weight: 200;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .footer-social {
    flex-direction: column;
  }

  .footer-eventsost img {
    width: 120px;
    height: 175px;
    margin-top: 5px;
  }
}

/* Formulario de registro */

.fis-form-container {
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 180px 40px 50px 40px;
  box-sizing: border-box;
}

.fis-form {
  max-width: 550px;
  width: 100%;
  background: #6d6d6db5;
  backdrop-filter: blur(30px);
  padding: 30px;
  border-radius: 30px;
  height: fit-content;
}

.fis-form h1 {
  text-align: center;
  color: #011024;
  margin-bottom: 30px;
  margin-top: 0;
}

.fis-form > label {
  color: #011024;
  font-weight: 500;
  text-align: center;
}

.fis-form > label:nth-of-type(3) {
  font-size: 22px;
}

#registrationForm {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

#registrationForm input,
#registrationForm select {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #24135f;
  opacity: 0.7;
  background-color: #ffffff;
  color: #24135f;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}

#registrationForm input::placeholder {
  color: #24135f;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}

.form-notification {
  color: #f5edf7;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  height: 20px;
  text-align: center;
}

.form-notification-loading {
  justify-content: center;
  margin-top: 15px;
  display: none;
  height: 40px;
}

.form-notification-loading img {
  height: 40px;
  width: auto;
}

#registrationForm label {
  display: none;
}

#registrationForm button {
  width: 80%;
  margin: auto;
  border-radius: 8px;
  background-color: #0072ce;
  color: #f5edf7;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  height: 40px;
  cursor: pointer;
  border: none;
  transition: background-color 200ms linear;
}

#registrationForm button:hover {
  background-color: #f5edf7;
  color: #24135f;
}

.form-privacy {
  display: flex;
  margin-bottom: 20px;
  gap: 5px;
  color: #f5edf7;
}

#registrationForm .form-privacy input {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}

.form-privacy {
  font-size: 14px;
}

.form-privacy a {
  color: #24135f;
}

#registrationForm select option {
  color: black;
}

@media (max-width: 900px) {
  .fis-form-container {
    padding: 180px 20px 50px 20px;
  }
}

/*BOTÓN DE WEBINAR*/

.webinar__container {
  display: inline-flex;
  position: fixed;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  top: 41%;
  right: -130px;
  transition: all 400ms ease-in-out;
}

.webinar__button {
  color: black;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  background: #00af66;
  padding: 12px 35px;
  transform: rotate(90deg);
}

@media (max-width: 900px) {
  .webinar__container {
    top: 60%;
  }

  .webinar__button {
    padding: 10px 20px;
    font-size: 12px;
  }
}
