.root {
  height: 100vh;
}

.App {
  height: 100vh;
}

body {
  margin: 0;
  font-family: "Inter";
  font-size: clamp(14px, 13px + 0.2vw, 17px);
  justify-content: center;
  align-items: center;
  height: 100%;
  word-wrap: break-word;
  overflow: auto;
  background-image: url("../imgs/fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

#program,
#speakers {
  min-width: 1280px;
  max-width: 1280px;
  width: 1280px;
}

.flex {
  display: flex;
}

.row {
  flex-direction: row;
}

.col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.fwrap {
  flex-wrap: wrap;
}

.overflow {
  overflow: auto;
}

.jcenter {
  justify-content: center;
}

.acenter {
  align-items: center;
}

.pad-10 {
  padding: 10px;
}

.pad-20 {
  padding: 20px;
}

.pad-40 {
  padding: 40px;
}

.padb-20 {
  padding-bottom: 20px;
}

.padl-40 {
  padding-left: 40px;
}

.gap-10 {
  gap: 10px;
}

.shadow {
  filter: drop-shadow(2px 2px 1px rgb(77, 77, 77));
}

.wfill {
  width: 100%;
  width: -moz-available;
  /* WebKit-based browsers will ignore this. */
  width: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  width: fill-available;
}

.hfill {
  height: 100%;
  height: -moz-available;
  /* WebKit-based browsers will ignore this. */
  height: -webkit-fill-available;
  /* Mozilla-based browsers will ignore this. */
  height: fill-available;
}

.title {
  font-size: 30px;
  /* color: #116865; */
  color: white;
  text-shadow: 1px 2px 5px #000000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  white-space: nowrap;
}

h1 {
  margin: 0;
}

.white {
  color: white;
}

.orange {
  color: orange;
  font-weight: 900;
}

.red {
  color: rgb(41, 255, 22);
  font-weight: 900;
}


.dark-blue {
  color: rgb(82, 90, 165);
}

.med-blue {
  color: #86a0ff;
}

.person-name {
  font-weight: 600;
  padding-bottom: 5px;
}

.person-job {
  font-weight: 400;
  color: rgb(211, 211, 211);
  padding-bottom: 5px;
}


.person-bio {
  color: rgb(255, 255, 255);
  padding-bottom: 5px;
  margin-bottom: 50px;
  /* border-left: 2px solid white; */
}

.footer {
  background: linear-gradient(180deg, #000615, #000000 150px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}

.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 10px 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.bottom-logo-container {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bottom-logo-container.hidden {
  display: none;
}

/* Contenedor de imágenes de cada grupo — flex por defecto para múltiples logos */
.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: 8px 16px;
  padding: 4px 0;
}

.footer-link {
  display: block;
  width: 100%;
  padding: 5px;
  text-align: center;
  box-sizing: border-box;
}

.speaker-picture {
  width: 200px;
  height: 100%;
  border-radius: 100%;
  border-top: 4px solid white;
  border-left: 4px solid white;
  border-right: 4px solid white;
  border-bottom: 10px solid white;
  transition: all ease 1s;
}

.speaker-picture:hover {
  /* scale: 1.05; */
  border-radius: 0;
}

.language-picture {
  width: 50px;
  height: 100%;
  border-radius: 5px;
  border: 2px solid white;
}

.language-picture:hover {
  border: 2px solid orange;
  border-radius: 10px;
}

.program-button {
  width: fit-content;
  padding: 10px 18px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.italic {
  font-style: italic;
}

.main {
  background-image: url("../public/imgs/fondo.png");
  background-size: cover;
}

.info-area-header {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.08) 80%, transparent 100%);
  position: relative;
  z-index: 5;
  margin: 18px 0 0;
  flex-shrink: 0;
}

#header-divider,
#footer-divider {
  display: none;
}

.info-area-header::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 8px 2px rgba(255,255,255,0.2);
}

.info-area {
  /* background-color: white; */
  gap: 20px;
  padding: 20px 0;
  font-size: 20px;
  background: linear-gradient(transparent, #000615 75px);
  min-height: 300px;
}

.basic-input {
  padding: 5px 10px;
  /* border-radius: 10px; */
  border: 2px solid rgb(202, 200, 200);
  /* font-family: "Noto Sans"; */
  font-family: "Inter";
  width: 300px;
}

.basic-input:hover {
  border: 2px solid orange;
}

.basic-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  border-radius: 10px;
  /* background: linear-gradient(white,transparent); */
}

.basic-button {
  /* font-family: "Noto Sans"; */
  font-family: "Inter";
  padding: 5px 10px;
  /* border-radius: 5px; */
  width: 120px;
  cursor: pointer;
}

.basic-button:hover {
  color: rgb(255, 255, 255);
  background: orange;
  border: 2px solid orange;
}

#main_container {
  height: 100%;
}

.bgreen {
  background: linear-gradient(135deg, rgb(182, 255, 182), rgb(152, 233, 120));
  color: green;
  border: 2px solid rgb(105, 190, 55);
}

.video {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

h3 {
  font-size: 20px;
}

.w300 {
  width: 150px;
}

.icon {
  font-size: 26px;
}

.pointer {
  cursor: pointer;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.logo {
  width: 80px;
  height: auto;
  /* filter: drop-shadow(0px 0px 6px #000000); */
}

.fade-in {
  animation: fadeIn2 1s;
}

.footer-link {
  color: white;
}

/* Animaciones */

@keyframes fadeIn {
  0% {
    opacity: 0;
    scale: 0;
  }

  70% {
    opacity: 0.7;
    scale: 1.01;
  }

  100% {
    opacity: 1;
    scale: 1;
  }
}

@keyframes fadeIn2 {
  0% {
    opacity: 0;

  }

  100% {
    opacity: 1;
  }
}



@media screen and (max-width : 1200px) {
  .title {
    font-size: 18px;
    text-shadow: 1px 1px 3px rgb(0, 0, 0);
    position: static;
    transform: none;
    white-space: normal;
  }

  .bottom-logo-container {
    align-items: center;
  }


  .info-area {
    /* background-color: white; */
    gap: 20px;
    padding: 20px 0;
    font-size: 20px;
  }

  .footer-logos {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    align-items: center;
    justify-items: center;
  }

  .speaker {
    flex-direction: column;
    align-items: center;
  }

  /* .speaker-picture {
    width: 150px;
  } */

  .button-container {
    justify-content: center;
  }

  .w300 {
    max-width: 150px;
    width: 100%;
  }

  .person-name,
  .person-job {
    padding-bottom: 10px;
  }

  .padl-40 {
    padding-left: 10px;
  }

  #program,
  #speakers {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .basic-input {
    width: 90vw;
    /* max-width: 300px; */
  }

}