#blocks {
  top: 60px;
  position: relative;
  overflow-x: hidden;
}

#tiny {
  font-size: 40%;
  text-align: center;
}

#headline {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  background: url("media/headlineImage.png");
  background-position: top center;
  background-size: contain;
  background-repeat: repeat;
  position: relative;
  width: 100%;
  height: 100dvh;
  color: white;

  #texts {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    height: auto;
    position: relative;
    bottom: 20dvh;
  }

  #title {
    text-align: center;
    font-size: 60px;
  }

  #description {
    width: 60%;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
  }

  #box {
    text-align: center;
    margin: 20px 0px 20px 0px;
    background-color: #051637;
    padding: 0px 10px;
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
  }
}

#about {
  padding: 50px 0px;
  position: relative;
  height: auto;
  width: 100%;
  color: #051637;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  #texts {
    max-width: 1400px;
    width: 70%;

    #titleTop {
      margin: 10px 0px;
      text-align: center;
      width: 100%;
      font-size: 50px;
      font-weight: 500;
      color: #051637;
    }

    #description {
      text-align: center;
      font-size: 20px;
      font-weight: 500;
    }
  }

  #box {
    max-width: 1400px;
    display: flex;
    margin: 10px 0px;
    flex-direction: row;
    padding: 10px;
    justify-content: center;
    align-items: center;
    width: 80%;
    border-radius: 25px;
    gap: 10px;
    background: linear-gradient(var(--corPrincipal), var(--corPrincipalc));

    .card {
      background: white;
      width: 50%;
      height: 200px;
      padding: 10px;
      display: grid;
      grid-template-columns: 100%;
      grid-template-rows: 50% 50%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: 25px;

      #title {
        width: 100%;
        text-align: center;
        font-size: 25px;
      }

      #description {
        width: 100%;
        font-size: 20px;
        text-align: center;
      }
    }
  }
}

#matriz {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 50px 0px;
  height: auto;

  #title {
    font-size: 50px;
    text-align: center;
    font-weight: 500;
    margin: 15px 0px;
  }

  #description {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin: 15px 0px;
  }

  #date {
    max-width: 900px;
    text-align: center;
    font-weight: 300;
    color: black;
    font-style: italic;
    font-size: 35px;
    background-color: #7aadde;
    width: 60%;
    text-align: center;
    margin: 20px 0px;
    transition: 0.5s;

    &:hover {
      box-shadow: 3px 5px 5px rgb(81, 81, 81);
      transform: scale(1.05);
      background-color: #051637;
      color: white;
    }
  }

  #matrizTable {
    width: 70%;
    gap: 0px;
    border-collapse: collapse;
    background-color: #cdd0d7;
    position: relative;

    &::after {
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 5;
      position: absolute;
      content: url("media/2.png");
      bottom: 0;
      left: 10%;
      width: 80%;
      height: 83.3333333333333333333333333333333333333333333%;
    }

    tr:nth-of-type(1) {
      background-color: white;
    }

    tr:nth-of-type(2) {
      background-color: white;
    }

    tr:nth-of-type(3) {
      background-color: white;
    }

    tr {
      font-size: 25px;

      td {
        height: 80px;
        border: 0.2px solid #1d1d1b;
        color: #3c3c3b;
      }

      td:nth-of-type(1) {
        color: #051637;
        font-weight: 600;
        font-size: 40px;
        padding: 10px;
        text-align: center;
      }

      td:nth-of-type(2) {
        text-align: left;
        padding: 10px;
      }

      td:nth-of-type(3) {
        font-style: italic;
        color: #051637;
        font-weight: 300;
        text-align: center;
        padding: 20px;
      }
    }
  }
}

/* Estilos do carrossel */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 33.33%;
  /* Cada slide ocupa 1/3 da largura */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.low-opacity {
  opacity: 0.3;
  /* Opacidade baixa para slides fora do foco */
}

.carousel-slide .slide-content {
  background-color: #1a3c5e;
  /* Cor de fundo azul escura */
  color: white;
  text-align: center;
  padding: 0;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.carousel-slide h3 {
  margin: 10px 0;
  font-size: 20px;
}

.carousel-slide p {
  margin: 0;
  font-size: 14px;
}

/* Setas de navegação */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

#professores {
  display: flex;
  background-color: #ced1d8;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;
  width: 100%;

  #title {
    max-width: 1200px;
    font-size: 50px;
    color: #051637;
    text-align: center;
    font-weight: 500;
    margin: 15px 0px;
  }

  #description {
    max-width: 1200px;
    color: #051637;
    font-size: 20px;
    text-align: center;
    margin: 15px 0px;
  }
}

#video {
  padding: 50px 0px;
  width: 100%;
  flex-direction: column;
  background-color: #051637;
  justify-content: center;
  align-items: center;
  align-content: center;
  display: flex;
  flex-direction: column;

  #title {
    width: 60%;
    color: white;
    font-size: 50px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    margin: 15px 0px;
  }

  .Video {
    flex-direction: column;
    width: 60%;
    padding: 30px 80px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0px;

    p1 {
      width: 100%;
      margin: 15px 0px;
      text-align: center;
      font-size: 20px;
      font-weight: 500;
    }

    p2 {
      width: 100%;
      margin: 15px 0px;
      text-align: center;
      font-size: 20px;
      font-weight: 500;
    }
  }

  #description {
    color: white;
    font-size: 22px;
    font-weight: 400;
    width: 60%;
    text-align: center;
  }

  .container-video {
    display: flex;
    justify-content: center;
    /* Centraliza o vídeo */
    align-items: center;
    width: 100%;
    /* Ajuste a largura conforme necessário */
    max-width: 100%;
    position: relative;

    iframe {
      border-radius: 25px;
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      /* Garante a proporção correta */
      border: none;
    }
  }
}

#questions {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0px;

  .buttonQ {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .button {
      margin: 30px 0px 0px 0px;
      color: white;
      width: 100%;
      text-align: center;
      background-color: #051637;
      font-weight: 500;
      font-size: 25px;
      cursor: pointer;
      padding: 10px 20px;
      text-transform: uppercase;
    }

    .content {
      text-align: center;
      font-size: 20px;
      padding: 0px;
      font-weight: 500;
      display: block;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      align-content: center;
      overflow: hidden;
      width: 100%;
      height: 0;
      background-color: #ced1d8;
      color: #051637;
      transition: 0.3s ease;
    }

    .content.questionOp {
      padding: 10px;
      height: 80px;
      display: block;
    }
  }

  #box-question {
    font-size: 30px;
    border-radius: 15px;
    padding: 15px 20px;
    margin: 25px 0px 0px 0px;
    background-color: #25d366;
    transition: 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #051637;
    font-style: italic;

    &:hover {
      background-color: #051637;
      transform: scale(1.05);
      box-shadow: 3px 5px 10px rgba(39, 39, 39, 0.6);
      color: white;
    }
  }

  #title {
    font-size: 40px;
    font-weight: 500;
    color: #051637;
  }
}

#metodologia {
  padding: 50px 0px;
  background-color: #ced1d8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  .title {
    margin: 15px;
    text-align: center;
    color: #051637;
    font-size: 40px;
    font-weight: 500;
  }

  .description {
    color: #051637;
    text-align: center;
    font-size: 20px;
    width: 50%;
    font-weight: 500;
  }

  .swiper-container-meto {
    margin: 50px 0px 0px 0px;
    width: 600px;
    height: 300px;
    position: relative;
    overflow: hidden;
  }

  .swiper-wrapper-meto {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .swiper-slide-meto {
    flex: 0 0 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  }

  .swiper-slide-meto.active-meto {
    opacity: 1;
    visibility: visible;
  }

  .swiper-slide-meto h2 {
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 15px;
    color: #051637;
    text-transform: uppercase;
    user-select: none; /* Impede a seleção do texto */
  }

  .swiper-slide-meto p {
    font-size: 16px;
    color: #051637;
    line-height: 1.5;
    user-select: none; /* Impede a seleção do texto */
  }

  .swiper-pagination-meto {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }

  .swiper-pagination-meto span {
    width: 10px;
    height: 10px;
    background-color: #fff;
    cursor: pointer;
  }

  .swiper-pagination-meto span.active-meto {
    background-color: #333;
  }

  /* Estilo das setas */
  .swiper-button-prev-meto,
  .swiper-button-next-meto {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    color: #051637;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    user-select: none;
  }

  .swiper-button-prev-meto {
    left: 35%;
  }

  .swiper-button-next-meto {
    right: 35%;
  }

  .swiper-button-prev-meto:hover,
  .swiper-button-next-meto:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

#pay {
  width: 100%;
  height: auto;
  padding: 50px 0px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  .description {
    font-size: 20px;
  }

  .title {
    font-size: 50px;
    font-weight: 500;
    color: #051637;
    margin: 15px;
  }

  #boxPay {
    height: auto;
    background-color: #051637;
    color: white;
    padding: 30px;
    margin: 10px 0px 0px 0px;
    border-radius: 15px;

    .title {
      font-weight: 400;
      margin: 0;
      font-size: 25px;
      text-align: center;
      color: white;
      margin: 0px 0px 30px 0px;
    }

    #options {
      max-width: 1200px;
      display: grid;
      height: auto;
      justify-content: center;
      align-content: center;
      grid-template-columns: 33.33% 33.33% 33.33%;
      grid-template-rows: auto;
      gap: 10px;

      div {
        position: relative;
        display: grid;
        grid-template-columns: 33.33%;
        grid-template-rows: 33.33% 33.33% 33.33%;
        grid-template-areas:
          "title"
          "description"
          "select";
        width: 100%;
        background-color: white;
        color: black;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 15px;
        align-items: center;
        transition: 0.3s ease;

        &:hover {
          opacity: 0.9;
          box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
        }

        a {
          color: var(--corContraste);
          background-color: #051637;
          padding: 20px;
          border-radius: 10px;
          position: relative;
          bottom: 0;
          font-weight: 600;
        }
      }
      /* PARCELADO NO PIX */
      div:nth-of-type(1) {
        background-color: #ced1d8;
        #title {
          font-weight: 600;
          font-size: 25px;
        }

        p {
          text-align: center;
          font-size: 20px;
        }
        /* TÍTULO PIX */
        div:nth-of-type(1) {
          text-align: center;
          &:hover {
            transform: scale(1);
            opacity: 1;
            box-shadow: none;
          }
        }
        /* DESCRIÇÃO PIX */
        div:nth-of-type(2) {
          text-align: center;
          background-color: #ced1d8;
          font-size: 20px;
          &:hover {
            transform: scale(1);
            opacity: 1;
            box-shadow: none;
          }
        }
        /* BOTÃO PIX */
        div:nth-of-type(3) {
          &:hover {
            transform: scale(1);
            opacity: 1;
            box-shadow: none;
          }
        }

        #SelectMensa {
          color: var(--corContraste);
          background-color: #051637;
          border: none;
          padding: 20px;
          border-radius: 10px;
          position: relative;
          bottom: 0;
          font-weight: 600;
          transition: 0.3s;

          &:hover {
            transform: scale(1.08);
            opacity: 1;
          }
        }

        #link {
          display: flex;
          flex-direction: row;
          gap: 20px;
        }

        a {
          transition: 0.3s;
          display: none;
          &:hover {
            transform: scale(1.08);
            opacity: 1;
          }
        }
      }
      /* Á VISTA */
      div:nth-of-type(2) {
        background-color: white;
        position: relative;
        #title {
          font-weight: 600;
          font-size: 25px;
        }

        a {
          transition: 0.3s;
          background-color: green;
          color: white;
          &:hover {
            transform: scale(1.08);
            opacity: 1;
          }
        }

        #tag {
          display: flex;
          position: absolute;
          z-index: 1;
          height: auto;
          padding: 5px;
          border-radius: 15px 5px 5px 0px;
          top: 0;
          left: 0;
          width: auto;
          font-size: 15px;
          font-weight: 700;
          background-color: #ffca0a;

          &:hover {
            transform: scale(1);
            box-shadow: none;
          }
        }

        p {
          text-align: center;
          font-size: 20px;
        }
        /* TÍTULO A VISTA */
        div:nth-of-type(2) {
          background-color: white;
          font-size: 20px;
          text-align: center;
          &:hover {
            opacity: 1;
            transform: scale(1);
            box-shadow: none;
          }
        }
        /* DESCRIÇÃO A VISTA */
        div:nth-of-type(3) {
          background-color: white;
          font-size: 20px;
          text-align: center;
          &:hover {
            opacity: 1;
            transform: scale(1);
            box-shadow: none;
          }
        }
        /* BOTÃO A VISTA */
        div:nth-of-type(4) {
          text-align: center;
          background-color: white;
          &:hover {
            opacity: 1;
            transform: scale(1);
            box-shadow: none;
          }
        }
      }
      /* PARCELADO SEM JUROS */
      div:nth-of-type(3) {
        background-color: #ced1d8;

        a {
          transition: 0.3s;
          &:hover {
            transform: scale(1.08);
            opacity: 1;
          }
        }

        #title {
          font-weight: 600;
          font-size: 25px;
        }

        p {
          text-align: center;
          font-size: 20px;
        }
        /* TÍTULO PARCELADO */
        div:nth-of-type(1) {
          text-align: center;
          background-color: #ced1d8;
          font-size: 20px;
          &:hover {
            opacity: 1;
            transform: scale(1);
            box-shadow: none;
          }
        }
        /* DESCRIÇÃO PARCELADO */
        div:nth-of-type(2) {
          background-color: #ced1d8;
          font-size: 20px;
          text-align: center;
          &:hover {
            opacity: 1;
            transform: scale(1);
            box-shadow: none;
          }
        }
        /* BOTÃO PARCELADO */
        div:nth-of-type(3) {
          text-align: center;
          background-color: #ced1d8;
          &:hover {
            opacity: 1;
            transform: scale(1);
            box-shadow: none;
          }
        }
      }
    }
  }
}

@media only screen and (max-width: 600px) {
  #headline {
    padding: 10px;
    background-size: cover;

    #title {
      width: 100%;
      font-size: 30px;
      text-align: center;
    }

    #description {
      width: 100%;
      font-size: 14px;
      text-align: center;
    }

    #box {
      font-size: 18px;
      text-align: center;
    }
  }

  #about {
    flex-direction: column;

    #texts {
      width: 95%;

      #titleTop {
        font-size: 30px;
      }

      #description {
        font-size: 15px;
      }
    }

    #box {
      flex-direction: column;
      width: 90%;

      .card {
        width: 100%;
        min-height: 180px;

        #title {
          font-size: 22px;
        }

        #description {
          font-size: 18px;
        }
      }
    }
  }

  #matriz {
    width: 100%;

    #title {
      font-size: 30px;
      text-align: center;
    }

    #description {
      text-align: center;
      font-size: 15px;
    }

    #date {
      width: 95%;
      font-size: 30px;
    }

    #matrizTable {
      width: 100%;

      tr {
        width: 100%;

        td {
          height: 110px;
        }

        td:nth-of-type(1) {
          font-size: 15px;
        }

        td:nth-of-type(2) {
          font-size: 14px;
        }

        td:nth-of-type(3) {
          font-size: 10px;
        }
      }
    }
  }

  #video {
    #title {
      width: 100%;
      font-size: 30px;
    }
    #description {
      width: 100%;
      font-size: 18px;
    }

    .Video {
      padding: 0px;
      border-radius: 30px 30px 0px 0px;
      width: 100%;

      iframe {
        border-radius: 0px;
      }

      p1 {
        padding: 10px;
        width: 100%;
        font-size: 18px;
      }
      p2 {
        padding: 10px;
        width: 100%;
        font-size: 18px;
      }
    }
  }

  #questions {
    #title {
      text-align: center;
      font-size: 30px;
    }

    .buttonQ {
      width: 95%;
      .button {
        padding: 5px 5px;
        border: none;
        font-size: 20px;
      }

      .content.questionOp {
        font-size: 15px;
        height: 110px;
      }
    }

    #box-question {
      width: 95%;
      text-align: center;
      font-size: 18px;
    }
  }

  #metodologia {
    padding: 30px 0px;
    .description {
      width: 100%;
      font-size: 15px;
    }

    .title {
      font-size: 30px;
    }

    .swiper-container-meto {
      height: auto;
      width: 100%;
    }

    .swiper-slide-meto {
      display: flex;
      flex-direction: column;
      justify-content: center;
      justify-items: center;
      align-items: center;
      height: auto;
    }

    .swiper-slide-meto h2 {
      font-size: 18px;
    }
    .swiper-slide-meto p {
      font-size: 15px;
    }

    .swiper-button-next-meto {
      display: none;
    }
    .swiper-button-prev-meto {
      display: none;
    }

    .swiper-pagination-meto {
      bottom: 0;
    }
    .swiper-pagination-meto span {
      bottom: 0;
      background-color: #333;
    }
    .swiper-pagination-meto span {
      bottom: 0;
      background-color: #333;
    }
    .swiper-pagination-meto span.active-meto {
      background-color: black;
    }
  }
  #pay {
    #boxPay {
      .title {
        font-size: 20px;
      }
      padding: 10px;
      #options {
        grid-template-columns: 100%;
        grid-template-rows: auto;
      }
    }
  }
}

/* Dispositivos um pouco maiores, mas ainda pequenos (Pequenos Tablets e Smartphones + largos, 600px para cima) */
@media only screen and (min-width: 600px) {
  #headline {
    padding: 10px;
    background-size: cover;

    #title {
      width: 100%;
      font-size: 45px;
      text-align: center;
    }

    #description {
      width: 90%;
      font-size: 16px;
      text-align: center;
    }

    #box {
      font-size: 20px;
      text-align: center;
    }
  }

  #about {
    #texts {
      width: 95%;

      #titleTop {
        font-size: 45px;
      }

      #description {
        font-size: 16px;
      }
    }

    #box {
      display: grid;
      grid-template-columns: 50% 50%;
      grid-template-rows: 50% 50%;
      width: 95%;
      padding: 10px;
      justify-content: center;
      align-content: center;

      .card {
        width: 100%;
        min-height: 250px;
      }
    }
  }

  #matriz {
    #matrizTable {
      width: 95%;

      tr {
        td:nth-of-type(1) {
          font-size: 28px;
        }

        td:nth-of-type(2) {
          font-size: 20px;
        }

        td:nth-of-type(3) {
          font-size: 20px;
        }
      }
    }
  }

  #video {
    #title {
      width: 100%;
      font-size: 30px;
    }
    #description {
      width: 100%;
      font-size: 18px;
    }

    .Video {
      padding: 0px;
      border-radius: 30px 30px 0px 0px;
      width: 100%;

      iframe {
        border-radius: 0px;
      }

      p1 {
        padding: 10px;
        width: 100%;
        font-size: 18px;
      }
      p2 {
        padding: 10px;
        width: 100%;
        font-size: 18px;
      }
    }
  }

  #questions {
    #title {
      text-align: center;
      font-size: 30px;
    }

    .buttonQ {
      width: 95%;
      .button {
        padding: 5px 5px;
        border: none;
        font-size: 25px;
      }

      .content {
        font-size: 20px;
      }

      .content.questionOp {
        font-size: 20px;
        height: 110px;
      }
    }

    #box-question {
      width: 95%;
      text-align: center;
      font-size: 18px;
    }
  }

  #pay {
    #boxPay {
      .title {
        font-size: 20px;
      }
      padding: 10px;
      #options {
        grid-template-columns: 100%;
        grid-template-rows: auto;
      }
    }
  }
}

/*Dispostivos Médios (Tablets deitados, 768px para cima) */
@media only screen and (min-width: 768px) {
  #headline {
    padding: 10px;

    #title {
      width: 100%;
      font-size: 50px;
      text-align: center;
    }

    #description {
      width: 70%;
      font-size: 16px;
      text-align: center;
    }

    #box {
      font-size: 18px;
      text-align: center;
    }
  }

  #about {
    #texts {
      width: 95%;

      #titleTop {
        font-size: 50px;
      }

      #description {
        font-size: 20px;
      }
    }

    #box {
      display: grid;
      grid-template-columns: 50% 50%;
      grid-template-rows: 50% 50%;
      width: 95%;
      padding: 10px;
      justify-content: center;
      align-content: center;

      .card {
        width: 100%;
        min-height: 250px;
      }
    }
  }

  #pay {
    #boxPay {
      .title {
        font-size: 20px;
      }
      padding: 30px;
      #options {
        grid-template-columns: 33.33% 33.33% 33.33%;
        grid-template-rows: auto;
      }
    }
  }
}

/* Dispostivos Largos (laptops/desktops, 992px para cima) */
@media only screen and (min-width: 992px) {
  #headline {
    background-size: cover;

    #title {
      text-align: center;
      font-size: 60px;
    }

    #description {
      width: 60%;
      text-align: center;
      font-size: 20px;
      font-weight: 500;
    }

    #box {
      text-align: center;
      margin: 20px 0px 20px 0px;
      background-color: #051637;
      padding: 0px 10px;
      font-size: 25px;
      font-style: italic;
      font-weight: 300;
    }
  }

  #about {
    #texts {
      width: 80%;
    }

    #box {
      width: 90%;
      display: flex;

      .card {
        padding: 20px;
      }
    }
  }

  #matriz {
    #matrizTable {
      max-width: 1200px;
      width: 70%;

      tr {
        td:nth-of-type(1) {
          font-size: 30px;
        }
      }
    }
  }

  #video {
    #title {
      width: 100%;
      font-size: 40px;
    }
    #description {
      width: 100%;
      font-size: 25px;
    }

    .Video {
      padding: 10px;
      border-radius: 30px 30px 0px 0px;
      width: 70%;

      iframe {
        border-radius: 25px;
      }

      p1 {
        padding: 10px;
        width: 100%;
        font-size: 18px;
      }
      p2 {
        padding: 10px;
        width: 100%;
        font-size: 18px;
      }
    }
  }

  #questions {
    #title {
      text-align: center;
      font-size: 40px;
    }

    .buttonQ {
      width: 80%;
      max-width: 900px;
      .button {
        padding: 10px 5px;
        border: none;
        font-size: 25px;
      }

      .content {
        font-size: 20px;
      }

      .content.questionOp {
        font-size: 20px;
        height: 110px;
      }
    }

    #box-question {
      max-width: 500px;
      width: 55%;
      text-align: center;
      font-size: 22px;
    }
  }
}

/* Super Largos (Telas maiores laptops, desktops e até TVs, 1200px para cima) */
@media only screen and (min-width: 1200px) {
  #headline {
    #title {
      text-align: center;
      font-size: 60px;
    }

    #description {
      width: 60%;
      text-align: center;
      font-size: 20px;
      font-weight: 500;
    }

    #box {
      text-align: center;
      margin: 20px 0px 20px 0px;
      background-color: #051637;
      padding: 0px 10px;
      font-size: 25px;
      font-style: italic;
      font-weight: 300;
    }
  }
}
