:root {
  --blue: #0000ff;
  --light-blue: #cce5ff;
  --body-margin: 25px;
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background-color: #fafafa;
  color: #0000ff;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
  font-style: normal;

}

a:link, a:visited {
  color: #0000ff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.logo img {
  width: 110px;
  padding-top: 25px;
}

.header-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.header-button.active {
  background-color: #0000ff;
  color: white;
  border: 1.5px solid #0000ff;
}

.top-buttons {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.header-buttons button {
  padding: .5px;
  font-size: 1rem;
  color: #0000ff;
  background: white;
  border-radius: 15px;
  border-color: #0000ff;
  cursor: pointer;
  width: 60px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.about-button {
  border: 1.5px solid #0000ff;
}


.header-border {
  width: 100vw;
  box-sizing: border-box;
  padding-top: 10px;
}

.header-border::before {
  content: "";
  display: block;
  height: 1.5px;
  background-color: var(--blue);
}

.dropdown {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
  background-color: #FAFAFA;
}

.dropdown-content {
  font-size: 25px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 25px 20px 25px;
}

.dropdown-content a {
  text-decoration: none;
}

.dropdown-content p {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  color: #0000ff;

}

.dropdown-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.insta-link {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border: 1.5px solid #0000ff;
  border-radius: 16px;
  width: 60px;
  padding: .5px;
}

.dropdown-border {
  height: 1.5px;
  background-color: #0000ff;
  margin: 0 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown.show .dropdown-border {
  opacity: 1;
  margin-bottom: 25px;
}

.menu-button.active {
  background-color: #0000ff;
  color: white;
  border: 1.5px solid #0000ff;
}

.menu-button {
  background: transparent;
  color: white;
  border: 1.5px solid #0000ff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 25px;
}

.main {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  background-color: #fafafa;
  width: 100vw;
  height: 100%;
}

.center-icon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.center-icon img {
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  display: none;
}

.overlay {
  display: none;
}

.program {
  text-align: left;
  margin-bottom: 100px;
  margin-left: 25px;
  width: -webkit-fill-available;
}

.program h1 {
  font-size: 21px;
  margin-bottom: 25px;
  margin-top: 10px;
}

.events {
  text-align: left;
}

.events h2 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400 !important;
  font-style: normal;
}

.events p {
  margin-bottom: 30px;
  font-size: 20px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.events .time p {
  font-size: 21px;
  font-weight: 500 !important;
  font-style: normal;
}

.line {
  border-bottom: 1px solid #0000ff;
  padding-bottom: 30px;
  margin-right: 25px;
}

.inline-icon {
  width: 11.5px;
  height: auto;
  vertical-align: middle;
  margin-left: 5px;
}

.icon-label {
  white-space: nowrap;
}

.manifiesto {
  text-align: left;
  margin-bottom: 125px;
  margin-left: 25px;
  margin-right: 25px;
}

.manifiesto h1 {
  font-size: 21px;
  margin-bottom: 25px;
  margin-top: 10px;
}

.manifiesto p {
  margin-bottom: 10px;
}

.partners {
  width: 87vw;
  text-align: center;
  margin-top: 20px;
  margin-left: 25px;
  margin-right: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partners-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1.5px solid #0000ff;
  padding-bottom: 12px;
}

.partners-row:last-child {
  border-bottom: none;
}

.partners-row img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.credits {
  text-align: left;
  font-size: 12px;
  margin-top: 45px;
  margin-bottom: 100px;
  margin-left: 25px;
  font-weight: 400 !important;
}

.productos {
  margin-top: 25px;
}

.productos h2 {
  font-size: 16px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400 !important;
  font-style: normal;
}

.first {
  margin-top: 25px;

}

.productos-tittle {
  font-size: 20px;
}

.productos-description {
  font-size: 20px;
  font-weight: 400 !important;
  font-style: normal;
}

.productos .last {
  margin-bottom: 50px;
}

.header,
.footer {
  background-color: #FAFAFA;
  width: 100vw;
  padding: 25px;
  padding-bottom: 0;
}

.footer {
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background-color: #fafafa;
  z-index: 1000;
  padding: 25px;
  padding-top: 0px;
  box-sizing: border-box;
}

.footer-border::before {
  content: "";
  display: block;
  height: 1.5px;
  background-color: var(--blue);
}

.footer-text {
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  padding-top: 5px;
}

.sponsors {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.sponsors img {
  width: 30px;
  height: auto;
  flex: 1;
}

/* Desktop Version */
@media (min-width: 665px) {
  body {
    margin: 0;
    background-color: #0000ff;
    overflow: hidden; 
  }

  .header,
  .footer,
  .dropdown {
    display: none;
  }

  .main {
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background-color: #0000ff;
    align-items: center;
  }

  .center-icon img {
    width: 250px;
    padding-top: 40px;
  }

  .overlay {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #0000ff;
    border: 1.5px solid #FAFAFA;
    border-radius: 15px;
    padding: 20px;
    max-width: 510px;
    margin-top: 0vh;
    z-index: 2;
    position: absolute;
    text-align: left;
    gap: 15px;
  }

  .overlay-icon {
    width: 80px;
    height: auto;
    flex-shrink: 0;
  }

  .overlay p {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    padding-left: 15px;
  }

  .overlay p span {
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .partners {
    display: none;
  }

  .icon-label {
    white-space: nowrap;
    display: none;
  } 
}