@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Global styles */
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
}
.title-section{
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #3a396b;
  font-size: 2.8rem;
  text-align: center;
  padding-bottom: 1.5rem;
  letter-spacing: .1rem;
}
.space-blank-large{
  height: 100px;
}
.space-blank-medium{
  height: 50px;
}
.arrow-back{
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  background-image: url('../img/back.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.arrow-next{
  position: absolute;
  right: 0;
  top: 50%;
  width: 50px;
  height: 50px;
  background-image: url('../img/next.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
  background-color: #1d1b56 !important;
  color: white !important;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 991px) {  
  .arrow-back{
    left: 0px;
  }
  .arrow-next{
    right: 0px;
  }
  .col-into-cont{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 664px) {
  .space-blank-large{
    height: 50px;
  }
  .space-blank-medium{
    height: 25px;
  }
}
@media screen and (max-width: 350px) {
  body{
    width: 110%;
    overflow-x: hidden;
  }
  .title-section {
    font-size: 2.2rem;
  }
}


/* Navbar styles */
.btn-menu-mobile{
  display: none;
  position: absolute;
  right: 0px;
  top: -10px;
  width: 30px;
  height: 30px;
  background-image: url(../img/menu.png);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.navbar-nav-mobile{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.navbar {
  background-color: #1d1b56;
  padding: 2rem 1rem 2rem 1rem;
  border: none;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  transform: translateY(0);
}
.hidden-navbar {
  transform: translateY(-200%);
}
.navbar > .container > .row {
  width: 100%;
}
.navbar-brand{
  width: 180px;
}
.navbar-nav {
  list-style: none;
  display: inline;
}
.navbar-nav li {
  display: inline-block;
  padding: .5rem 2rem .5rem 2rem;
}
.active {
  background-color: #3a396b;
}
.navbar-nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: white;
}
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(0);
}
.navbar-nav-mobile--open {
  transform: translateX(0%) !important;
}
.btn-close-mobile {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 11000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.btn-close-mobile:hover {
  background: rgba(255,255,255,0.1);
}
@media screen and (max-width: 1199px) {
  .navbar-nav li {
    font-size: 0.96rem;
  }
}
@media screen and (max-width: 991px) {
  .navbar-nav {
    display: none;
  }
  .navbar-nav-mobile {
    display: block;
    background-color: #1d1b56;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    padding: 5rem 1rem 2rem 1rem;
    z-index: 9999;
    text-align: center;
    font-size: 1.2rem;
    transform: translateY(-100%);
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  }
  .navbar-nav-mobile li {
    display: block;
    padding: .5rem 0;
  }
  .navbar-nav-mobile a {
    color: white;
  }
  .navbar-brand {
    width: 140px;
  }
  .navbar {
    padding: 1rem 1rem 1rem 1rem;
  }
  .btn-menu-mobile {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .contaioner-header{
    max-width: 100%;
  }
}

/* Banner styles */
.img-banner-header{
  max-width: 430px;
}
.details-event-header-banner{
  color: #3a396b;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  display: grid;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}
.details-event-header-banner li{
  position: relative;
  width: 305px;
  text-align: center;
}
.details-event-header-banner li::before{
  position: absolute;
  width: 20px;
  height: 20px;
  left: -30px;
  top: 5px;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
}
.details-event-header-banner li:nth-child(1)::before{
  background-image: url('../img/icon-cal.png');
}
.details-event-header-banner li:nth-child(2)::before{
  background-image: url('../img/icon-pin-map.png');
}
@media screen and (max-width: 991px) {  
  .img-banner-header {
      max-width: 330px;
  }
}
@media screen and (max-width: 767px) {  
  .container-header-banner {
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .details-event-header-banner{
    margin-left: 40px;
  }
  .details-event-header-banner li::before{
    left: -20px;
  }
}
@media screen and (max-width: 664px) {  
  .details-event-header-banner{
    font-size: 1rem;
  }
  .details-event-header-banner li::before {
    left: 0px;
  }
  .img-banner-header {
    max-width: 280px;
  }
}
@media screen and (max-width: 550px) {  
  .img-banner-header {
    max-width: 210px;
  }
  .details-event-header-banner {
    margin-left: 130px;
  }
}
@media screen and (max-width: 425px) { 
   .details-event-header-banner {
    position: absolute;
    left: 50%;
    margin-left: -40px;
    margin-bottom: 0px;
    bottom: -85px;
    font-size: 0.9rem;
    width: 300px;
   }
}
@media screen and (max-width: 350px) { 
  .img-banner-header {
    max-width: 140px;
  }
}
/* Countdown styles */
.container-countdown{
  width: 200px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .3rem 0;
  background-color: #1d1b56;
  color: white;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
}
.text-countdown{
  font-size: 1.2em;
  font-weight: bold;
}
.number-countdown{
  font-size: 1.2em;
  font-weight: 100;
  padding: 0 .2rem 0 2rem;
}
@media screen and (max-width: 991px) {  
 .cont-count{
  -ms-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
  max-width: 33.333%;
 }
}
@media screen and (max-width: 767px) {  
  .container-countdown{
    width: 100%;
    max-width: 100%;
    padding: .3rem 0;
    margin: 10px auto;
  }
}
@media screen and (max-width: 664px) {  
  .cont-count{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
  }
  .number-countdown {
    padding: 0 .2rem 0 1rem;
  }
}

/* Description event styles */
.description-event{
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #3a396b;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 2rem 0;
}
@media screen and (max-width: 991px) {  
  .container-countdown-event{
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {  
  .container-event{
    max-width: 100%;
  }
  .cont-description{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
}

/* About Congress styles */
.row-about-congress{
  position: relative;
}
.img-banner-header-about{
  position: relative;
  width: 100%;
  height: 530px;
  border-radius: 25px;
  background-position: bottom center;
}
.info-banner-about{
  position: absolute;
  width: 260px;
  right: 30px;
  bottom: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: medium;
  color: white;
  background-color: #1d1b569f;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: right;
  padding: 1.5rem 1rem;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {  
  .container-about-congress{
    max-width: 100%;
  }
}
@media screen and (max-width: 664px) {  
  .img-banner-header-about{
    height: 450px;
  }
}
@media screen and (max-width: 425px) { 
  .img-banner-header-about {
    height: 340px;
  }
  .info-banner-about {
    font-size: .85rem;
    width: 100%;
    right: 0px;
    bottom: 0px;
  }
  #next-congress {
    top: inherit;
    bottom: -50px;
    right: 50% !important;
    margin-right: -50px;
  }
  #back-congress {
    top: inherit;
    bottom: -50px;
    left: 50% !important;
    margin-left: -50px;
  }
}

/* Speakers Section styles */
.container-speakers{
  min-height: 300px;
}
.name-speaker{
  width: fit-content;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #2b3283;
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
  border-bottom: 1px solid #2b3283;
  padding: 1rem 0;
}
.description-speaker{
  font-family: "Montserrat", sans-serif;
  font-weight: 100;
  color: #3a396b;
  font-size: 1rem;
  margin-bottom: .5rem;
}
.container-speaker-image{
  background-image: url(../img/exponentes/bg.png);
  background-size: 110px;
  background-repeat: no-repeat;
  background-position: left bottom;
}
.img-speaker{
  width: 250px;
}
@media screen and (max-width: 991px) {
  #back-speaker{
    left: -50px;
  }
  #next-speaker{
    right: -50px;
  }
}
@media screen and (max-width: 767px) {  
  .container-speakers-section{
    max-width: 100%;
  }
}
@media screen and (max-width: 664px) {  
  .col-into-cont {
    -ms-flex: 0 0 50%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
    padding-bottom: 20px;
  }
  #back-speaker{
    left: 0px;
  }
  #next-speaker{
    right: 0px;
  }
}
@media screen and (max-width: 664px) {  
  .img-speaker {
    width: 200px;
  }
}

/* Scientific Program styles */
.details-program{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #3a396b;
  font-size: 1.2rem;
  padding-left: 0;
}
.img-programa-cientifico{
  max-width: 300px;
}
.btn-program{
  width: 200px;
  height: 60px;
  padding-top: .6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background-color: #1d1b56;
  border: 2px solid #1d1b56;
  color: white;
  border-radius: 15px;
  font-size: 1.5rem;
  margin: 30px auto;
  cursor: pointer;
}
.btn-program:hover{
  background-color: white;
  color: #1d1b56;
}
@media screen and (max-width: 767px) {  
  .container-scientist-program{
    max-width: 100%;
  }
}

/* Activities Section styles */
.details-activities{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #3a396b;
  font-size: 1.2rem;
  padding-left: 0;
}
.slides-activities{
  position: relative;
  width: 100%;
  min-height: 120px;
  height: 350px;
  border-radius: 25px;
  background-repeat: no-repeat;
}

.pagination-activities {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  list-style: none;
}
.pagination-activities li{
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  margin-right: 5px;
  cursor: pointer;
  margin-left: 15px;
  margin-right: 15px;
}
.pagination-activities li.active{
  background-color: #2a60a6;
}
.pagination-activities li:hover{
  background-color: #6eb3ff;
}
@media screen and (max-width: 991px) {
  .container-activities {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {  
  .container-activities-section{
    max-width: 100%;
  }
}
@media screen and (max-width: 664px) {  
  .details-activities, .container-activities{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
  }
}
/* Registration Section styles */
.list-prices{
  width: 440px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #3a396b;
  font-size: 1.5rem;
  padding-left: 0;
  margin: 0 auto;
}
.list-prices li{
  position: relative;
  height: 80px;
  padding-left: 50px;
}
.list-prices li::before{
  position: absolute;
  width: 30px;
  height: 30px;
  left: 0px;
  top: 5px;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
}
.list-prices li:nth-child(1)::before{
  background-image: url('../img/registro/icon-01.png');
}
.list-prices li:nth-child(2)::before{
  background-image: url('../img/registro/icon-02.png');
}
.list-prices li:nth-child(3)::before{
  background-image: url('../img/registro/icon-03.png');
}
.container-price-presale{
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: white;
  font-size: 1.5rem;
  padding-left: 0;
  background-color: #1d1b56;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-left: 7rem;
}
.container-price-student{
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: white;
  font-size: 1.5rem;
  padding-left: 0;
  background-color: #1d1b56;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  margin-left: 5rem;
}
.container-price-day-event{
  margin-left: 1rem;
}
.form-registration label{
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #3a396b;
}
.form-registration select, .form-registration input{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #3a396b;
}
.form-registration input{
  border-bottom: #1d1b56 2px solid;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0px;
}
.form-registration input:focus, .form-registration select:focus{
  box-shadow: none;
}
.form-registration select{
  border: #1d1b56 2px solid;
  border-radius: 0px;
}
.btn-submit-registration{
  width: 150px;
  height: 50px;
  padding-top: .2rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  background-color: #1d1b56;
  border: 2px solid #1d1b56;
  color: white;
  border-radius: 15px;
  font-size: 1.2rem;
  margin-top: 20px;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .container-registration {
    max-width: 100%;
  }
}
@media screen and (max-width: 664px) {
  .container-prices{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .container-price-presale {
    font-size: 1.2rem;
    padding: 1rem 1rem;
    margin-left: 3rem;
  }
  .container-price-student{
    font-size: 1.2rem;
    padding: 1rem 1rem;
    margin-left: 1rem;
  }
  .list-prices{
    width: 100%;
  }
}
@media screen and (max-width: 470px) {
  .col-prices-section{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 395px) {
  .list-prices {
    font-size: 1.2rem;
  }
  .container-price-presale {
    font-size: 1rem;
    padding: .5rem .5rem;
    margin-left: 2rem;
  }
  .container-price-student {
    font-size: 1rem;
    padding: .5rem .5rem;
    margin-left: 1rem;
  }
  .container-price-day-event {
    margin-left: .5rem;
  }
  .list-prices li {
    text-align: center;
    height: 60px;
    padding-left: 35px;
  }
  .list-prices li::before {
    width: 25px;
    height: 25px;
  }
}

/* Contact Section styles */
.contact-row{
  min-height: 450px;
}
.contact-address{
  width: 280px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #3a396b;
  font-size: 1.2rem;
  text-align: center;
  margin: 0px auto 30px auto;
}
.container-contact-congress{
  background-image: url(../img/contacto/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.logo-contact{
  position: absolute;
  width: 360px;
  height: 160px;
  top: 170px;
}
.contact-info {
  width: 280px;
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  text-align: center;
}
.contact-info li {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #3a396b;
  font-size: 1rem;
  margin-bottom: 10px;
}
.contact-info li::before {
  content: '';
  position: absolute;
  left: -30px;
  top: -2px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
.contact-info li:nth-child(1)::before {
  background-image: url('../img/contacto/icon-phone.png');
}
.contact-info li:nth-child(2)::before {
  background-image: url('../img/contacto/icon-wa.png');
}
.contact-info li:nth-child(3)::before {
  background-image: url('../img/contacto/icon-email.png');
}
.list-social-media{
  display: inline;
  margin-top: 50px;
}
.list-social-media li {
  display: inline-block;
}
.list-social-media li a img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {  
  .container-contact{
    max-width: 100%;
  }
  .logo-contact{
    width: 250px;
    height: auto;
    top: 100px;
  }
  .contact-info li::before{
    left: -20px;
  }
}
@media screen and (max-width: 664px) { 
  .container-contact-info{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center !important;
  }
  .container-contact-congress{
    display: none !important;
  }
 }

/* Modal Speaker */
.modal-speaker {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal-speaker.open {
  display: flex;
}
.modal-content-speaker {
  background: #fff;
  border-radius: 10px;
  max-width: 400px;
  width: 90vw;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  text-align: left;
}
.modal-content-speaker h3 {
  margin-top: 0;
  font-size: 1.3em;
  color: #1a1a1a;
}
.modal-content-speaker .modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
}
.btn-bio {
  margin-top: 0.7em;
  background: #1a6dc4;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.4em 1.2em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-bio:hover {
  background: #124a7c;
}