@font-face {
  font-family: "Gotham-Black";
  src: url("assets/fonts/Gotham-Black.woff2") format("woff2");
  font-style: normal;
}

@font-face {
  font-family: "Poppins-Black";
  src: url("assets/fonts/Poppins-Black.woff2") format("woff2");
  font-style: normal;
}

@font-face {
  font-family: "Gibson-Semibold";
  src: url("assets/fonts/Gibson-SemiBold.woff2") format("woff2");
  font-style: normal;
}

@font-face {
  font-family: "MyriadPro-Regular";
  src: url("assets/fonts/MyriadPro-Regular.woff2") format("woff2");
  font-style: normal;
}

body {
  font-family: "MyriadPro-Regular", sans-serif;
  color: #58514f;
  margin: 0;
  padding: 0;
}

.navbar-logo {
  width: 330px;
  max-width: 100%;
}

header {
  padding: 20px 0;
}

h1 {
  font-family: "Gotham-Black", sans-serif;
  font-size: clamp(1.8rem, 6vw, 4.0625rem);
  margin-bottom: 20px;
  text-transform: uppercase;
}

h3 {
  font-family: "Gotham-Black", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.1;
}

.hero {
  background: url("assets/img/banner-main.webp") no-repeat center center / cover;
  min-height: 750px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

section {
  padding: 100px 0;
}

.section-conferencias {
  padding: 150px 0;
  position: relative;
  background:
    url("assets/img/trama-bg-conferencia.svg") repeat,
    linear-gradient(to right, #007dd0, #05c7f5);
  background-size: cover, cover;
  color: #fff;

  .decor-points {
    top: 2%;
  }
}

.section-pope {
  padding: 150px 0;
  background: url("assets/img/banner-asistir.webp") no-repeat center center / cover;
  position: relative;

  ul {
    list-style: none;
    padding-left: 0;

    li {
      font-size: 1.3rem;
      margin-bottom: 18px;
      padding-left: 30px;
      position: relative;

      &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.2em;
        width: 20px;
        height: 20px;
        background: url("assets/img/icon-arrow.svg") no-repeat center;
        background-size: contain;
      }
    }
  }
}

.section-footer {
  background: url("assets/img/banner-registro.webp") no-repeat center center / cover;
  min-height: 450px;
  position: relative;
}

.icon-foro {
  width: 142px;
  max-width: 100%;
}

.table-foro>:not(caption)>*>* {
  background: transparent;
  color: #ffffff;
  font-size: 1.3rem;
  padding: 15px;
}

.table-foro {
  color: #ffffff;
  text-align: left;

  thead {
    font-family: "Poppins-Black";
    text-align: center;
    background-color: #ff1949;
    text-transform: uppercase;

    tr {
      border-top: 0;
      border-bottom: 0;
    }

    th {
      font-size: 1.6rem;
    }

    .first-th {
      border-top: 0;
      border-left: 0;
      border-bottom: 0;
    }

    .last-th {
      border-top: 0;
      border-right: 0;
      border-bottom: 0;
    }
  }
}

.decor-points {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  max-width: 100%;
  height: auto;
}

.decor-point--left {
  top: 42%;
  width: 180px;
  transform: translateY(-50%);
  left: 10px;
  right: auto;
  transform: none;
}

.banner-subtitle {
  font-family: "Gotham-Black", sans-serif;
  font-size: clamp(1rem, 6vw, 1.6rem);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.section-desafios {
  padding: 120px 0 150px;
  position: relative;

  h3 {
    color: #007dd0;
  }

  p {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;

    span {
      font-family: "Gotham-Black", sans-serif;
      font-weight: 600;
      color: #ff1949;
      font-size: 1.1rem;
    }
  }
}

.btn-foro {
  font-family: "Gibson-Semibold";
  border-radius: 30px;
  background-color: #007dd0;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-foro--register {
  background-color: #ff1949;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px 80px;
}

.section-organiza {
  padding: 150px 0;
  position: relative;

  h3 {
    color: #007dd0;
  }

  .decor-points {
    top: 2%;
  }
}

.section-organiza .col-md-6:first-child {
  position: relative;
}

.section-organiza .col-md-6:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 80%;
  background-color: #58514f5d;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }

  .decor-point--left {
    display: none;
  }

  .table-foro {
    & thead {
      th {
        font-size: 1rem;
      }
    }
  }

  .table-foro>:not(caption)>*>* {
    font-size: 0.9rem;
  }
}

@media (max-width:480px) {
  .btn-foro--register {
    font-size: 1.2rem;
    padding: 10px 40px;
  }
}