* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Sora;
  scroll-behavior: smooth;
}

@keyframes piscar {
  0% {
    opacity: 1;
  }

  /* Visível no início */
  70% {
    opacity: 0;
  }

  /* Desaparece suavemente */
  100% {
    opacity: 1;
  }

  /* Aparece de uma vez no final */
}

@keyframes bgBotao {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

body {
  background-color: #000;
}

header {
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100vw;
  background-color: #af0718;
  z-index: 9999999;
  display: none;

  #centraliza-timer {
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 24px;

    p {
      color: #e9e9e9;
      font-size: 1.1em;
      font-weight: 600;
      line-height: 1.2em;
    }

    #relogio {
      display: flex;
      gap: 24px;

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

      span {
        font-size: 20px;
        font-weight: 500;
        color: #ffce00;
      }

      p {
        font-size: 12px;
        font-weight: 400;
      }
    }
  }
}

#first {
  background-image: url('./assets/bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  /* margin-top: 65px; */
  padding: 40px 0 50px;

  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  /* justify-content: center; */

  #central {
    display: flex;
    flex-direction: column;
    width: 42%;
    margin-left: 72px;

    #urgencia {
      padding: 10px;
      width: 100%;
      background-color: #e9e9e9;
      border-radius: 3px 3px 3px 3px;
      animation: piscar 1.6s infinite;

      h2 {
        color: #000;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1.2em;
        letter-spacing: .5px;
        text-align: center;
      }
    }

    #logo {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      margin: 20px 0 30px;

    }

    h1 {
      margin-top: 0px;
      font-size: 30px;
      font-weight: 300;
      line-height: 38px;
      color: #e9e9e9;

      span {
        /* color: #ecc270; */
        font-weight: 600;
      }
    }

    h2 {
      margin: 20px 0;
      font-size: 20px;
      font-weight: 100;
      line-height: 26px;
      color: #e9e9e9;
    }

    .btn-home-header {
      margin-top: 10px;
      animation: bgBotao 10s linear infinite;
      padding: 14px 20px;
      border-radius: 3px;
      border: none;
      color: #e9e9e9;
      background: linear-gradient(-45deg, #eb6f4a, #f79678, #eb6f4a, #4e0704);
      /* background: linear-gradient(-45deg, #01D355, #11c358, #01D355, #01D355); */
      background-size: 600%;
      width: 90%;
      min-height: 47px;
      cursor: pointer;

      b {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
      }
    }

    .btn-home-header:hover {
      background-color: #190624;
      filter: brightness(1.15);
      /* box-shadow: 0px 10px 25px 5px rgba(96, 61, 20, 0.466); */
      box-shadow: 0px 10px 25px 5px rgba(200, 52, 29, 0.366)
    }

  }
}

.segunda-dobra {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 10%;
  background-image: url("./assets/gptbg.png");
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  .texto {
    flex: 1 1 50%;
    padding-right: 5%;

    h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #000;
      line-height: 1.2;
      text-align: center;
    }

    p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 16px;
      color: #000;
    }

    strong {
      color: #000;
      font-weight: bold;
    }
  }

  #coloridos {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 0 0;

    h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #000;
      line-height: 1.2;
      text-align: center;
    }

    #imagens-coloridos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;

      .colorido {
        display: flex;
        flex-direction: column;
        align-items: center;

        h3 {
          font-size: 1.5rem;
          margin-bottom: 20px;
          color: #000;
          line-height: 1.2;
          text-align: center;
        }
  
        img {
          width: 600px;
        }
  
        p {
          margin-top: 10px;
          font-size: 1.2rem;
          line-height: 1.6;
          margin-bottom: 16px;
          color: #000;
          width: 580px;
        }
      }

    }
  }
}

@media screen and (max-width: 768px) {
  .segunda-dobra {
    flex-direction: column;
    text-align: center;
  }

  .segunda-dobra .texto {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .segunda-dobra .imagem {
    transform: none;
  }

  #coloridos {
    padding: 20px 0 0 !important;

    #imagens-coloridos {
      grid-template-columns: 1fr !important;

      .colorido {
  
        img {
          width: 300px !important;
        }

        p {
          width: 300px !important;
        }
      }

    }
  }
}

#terceira-dobra {
  padding: 60px 20px;
  text-align: center;
  background-image: url("./assets/fourbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #e9e9e9;
  }

  .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 100px;

    .card {
      background-color: rgba(255, 255, 255, 0.9);
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      width: 220px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

      h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #000;
      }

      p {
        font-size: 14px;
      }
    }
  }

  .highlight-box {
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #eb6f4a;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

    p {
      font-size: 18px;
      margin-bottom: 20px;
      color: #fff;
    }

    .bullets {
      text-align: left;
      margin-top: 20px;

      li {
        margin-bottom: 10px;
        font-size: 16px;
        color: #fff;
        list-style-type: none;
      }

      li::before {
        content: "\2022";
        color: #eb6f4a;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
      }
    }
  }
}

@media (max-width: 767px) {
  .card {
    width: 90% !important;
  }
}

.quarta-dobra {
  background: #0e0e0e;
  padding: 100px 10%;
  color: #fff;
  text-align: center;
  overflow: hidden;

  h2 {
    font-size: 2.4rem;
    margin-bottom: 60px;
    background: linear-gradient(to right, #eb6f4a, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .colunas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;

    .coluna {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 30px 40px;
      flex: 1 1 400px;
      max-width: 500px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);

      h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #eb6f4a;
      }

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

        li {
          margin-bottom: 16px;
          font-size: 1.1rem;
          color: #ddd;
          position: relative;
          padding-left: 24px;
          text-align: left;
        }
      }
    }
  }
}

.coluna li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #eb6f4a;
}

.coluna.direita li::before {
  content: '\2717';
  color: #eb6f4a;
}

.quarta-dobra.active .colunas {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .quarta-dobra {
    background: #0e0e0e;
    padding: 10px 10%;
  
    h2 {
      font-size: 2.4rem;
      margin-bottom: 60px;
      background: linear-gradient(to right, #eb6f4a, #fff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  
    .colunas {
      gap: 20px;
  
      .coluna {
        padding: 20px;
  
        h3 {
          font-size: 1.6rem;
          margin-bottom: 20px;
          color: #eb6f4a;
        }
  
        ul {
          list-style: none;
          padding: 0;
          margin: 0;
  
          li {
            margin-bottom: 16px;
            font-size: 1.1rem;
            color: #ddd;
            position: relative;
            padding-left: 24px;
            text-align: left;
          }
        }
      }
    }
  }
}

@media (max-width: 767px) {

  #five {
    padding: 80px 0;
  }

  .timeline-event,
  .timeline-event:nth-child(even),
  .timeline-event:nth-child(odd) {
    width: 100%;
    left: 0;
    padding-left: 50px;
    text-align: left;
  }

  .event-box {
    padding: 15px !important;

    p {
      text-align: left;
    }
  }

  .timeline-event {
    padding: 30px 20px !important;
  }

  .timeline-event:nth-child(odd) {
    right: 50%;
    text-align: right;
  }
}

#quinta-dobra {
  display: none;
  padding: 80px 20px;
  background-image: url('./assets/sixbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #fff;
  }

  .testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;

    .testimonial {
      background-color: rgba(0, 0, 0, 0.8);
      border-left: 5px solid #d4af37;
      border-radius: 10px;
      padding: 25px 30px;
      width: 300px;
      position: relative;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

      p {
        font-size: 16px;
        margin: 20px 0 10px 0;
        line-height: 1.5;
        color: #e9e9e9;
      }

      .author {
        font-size: 14px;
        font-weight: bold;
        color: #d4af37;
        text-align: right;
      }
    }

    .testimonial::before {
      content: '“';
      font-size: 60px;
      color: #d4af37;
      position: absolute;
      top: -20px;
      left: 15px;
    }
  }
}

@media (max-width: 767px) {
  .testimonial {
    width: 90%;
  }
}

#sexta-dobra {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;

  h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
    width: 60%;
    text-align: center;

    span {
      color: #eb6f4a;
      font-weight: 600;
    }
  }

  #card-lotes {
    display: flex;
    gap: 3px;
    height: 400px;

    #lotes {
      background-color: #eb6f4a;
      display: flex;
      justify-content: space-evenly;

      text-align: center;
      font-size: 14px;
      border-radius: 10px 0 0 10px;

      p {
        color: #fff;
        font-size: 18px;
      }

      #lote3 {
        display: flex;
        justify-content: space-evenly;
        height: 100%;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        padding: 20px;
      }
    }

    #card-branco {
      background-color: #fff;
      height: 100%;
      border-radius: 0 10px 10px 0;
      padding: 10px;
      width: 500px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;

      #titulo-lote {
        background-color: #eb6f4a;
        display: flex;
        justify-content: center;
        width: 100%;

        h2 {
          margin: 0;
        }
      }

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

        li {
          padding: 5px 0;
          font-size: 18px;
          font-weight: 300;
        }
      }

      .price {
        display: flex;
        flex-direction: column;
        align-items: center;

        p {
          font-size: 28px;
        }

        b {
          font-size: 60px;
          font-weight: 500;
        }

        span {
          font-size: 18px;
        }
      }

      a {
        width: 100%;
        display: flex;
        justify-content: center;
        text-decoration: none;
      }

      .btn-home-header {
        margin-top: 10px;
        animation: bgBotao 5s linear infinite;
        padding: 14px 20px;
        border-radius: 3px;
        border: none;
        color: #e9e9e9;
        background: linear-gradient(-45deg, #eb6f4a, #f79678, #eb6f4a, #4e0704);
        background-size: 600%;
        width: 80%;
        min-height: 47px;
        cursor: pointer;

        b {
          font-size: 20px;
          font-weight: 600;
          text-transform: uppercase;
        }
      }

      .btn-home-header:hover {
        background-color: #190624;
        filter: brightness(1.15);
        /* box-shadow: 0px 10px 25px 5px rgba(96, 61, 20, 0.466); */
        box-shadow: 0px 10px 25px 5px rgba(200, 52, 29, 0.366)
      }
    }
  }
}

@media (max-width: 600px) {
  #sexta-dobra {
    padding: 50px 20px;

    h2 {
      font-size: 22px;
      width: 100%;
    }

    #card-lotes {
      gap: 2px;
      height: 200px;
      width: 100%;

      #lotes {
        p {
          color: #fff;
          font-size: 10px;
        }

        #lote3 {
          padding: 4px;
        }

        #lote1e2 {
          #lote2 {
            padding: 4px;
          }

          #lote1 {
            padding: 4px;
          }
        }
      }

      #card-branco {
        padding: 6px;
        width: 100%;

        #titulo-lote {

          h2 {
            font-size: 14px;
          }
        }

        ul {
          li {
            padding: 2px 0;
            font-size: 8px;
          }
        }

        .price {
          p {
            font-size: 12px;
          }

          b {
            font-size: 30px;
          }

          span {
            font-size: 8px;
          }
        }

        .btn-home-header {
          margin-top: 10px;
          animation: bgBotao 5s linear infinite;
          padding: 8px 10px;
          border-radius: 3px;
          background-size: 600%;
          width: 90%;
          min-height: auto;
          cursor: pointer;

          b {
            font-size: 10px;
          }
        }
      }
    }
  }
}

#andrei {
  background-image: url("./assets/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 90vh;
  display: flex;
  justify-content: end;

  #texto {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 55%;
    padding: 60px;

    h2 {
      color: #eb6f4a;
      font-size: 30px;
      font-weight: 400;
      line-height: 1.2em;
    }

    p {
      color: #e9e9e9;
      font-family: sora, Sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5em;
      letter-spacing: 0;
    }
  }

}

#footer {
  background-color: #313131;
  padding: 60px;
  display: flex;
  flex-direction: column;

  p {
    text-align: center;
    align-self: center;
    color: #e9e9e9;
    width: 75%;
    font-weight: 400;
  }

  #contato {
    margin-top: 30px;
    align-self: center;
    width: 90%;

    h2 {
      color: #e9e9e9;
      font-size: 20px;
      font-weight: 600;
    }

    h3,
    p,
    a {
      color: #e9e9e9;
      font-size: 15px;
      font-weight: 400;
      line-height: 16px;
      margin-top: 10px;
    }

    p {
      text-align: start;
    }

    #direitos {
      display: flex;
      margin-top: 20px;
      align-items: center;
      justify-content: space-between;

      p {
        width: auto;
      }

      .links {
        display: flex;
        gap: 10px;
        color: #e9e9e9;

        a {
          color: #e9e9e9;
          text-decoration: none;
          font-size: 15px;
          font-weight: 400;
          line-height: 16px;
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  header {
    #centraliza-timer {
      p {
        font-size: .9em;
      }

      #revelacao {
        display: none;
      }

      #relogio {
        span {
          font-size: 18px;
        }
      }
    }
  }

  #first {
    background-image: url('./assets/bg-mb2.png');
    padding: 30px 0;
    align-items: center;
    height: 110vh;

    #central {
      width: 90vw;
      margin: 0;

      #logo {
        flex-direction: column;

        img {
          width: 50%;
          margin-top: -16px;
        }

        #data {
          width: auto;
          margin-top: -16px;

          p {
            font-size: 12px;
          }
        }
      }

      h1 {
        font-size: 20px;
        line-height: 24px;
        margin-top: 40px;
      }

      h2 {
        font-size: 14px;
        line-height: 18px;
      }

      .boxForm {
        h3 {
          font-size: 13px;
          line-height: 16px;
        }


        .input-home-header {
          width: 100%;
        }

        .btn-home-header {
          width: 100%;
        }

        p {
          font-size: 10px;
          line-height: 13px;
          width: 100%;
        }
      }
    }
  }

  #andrei {
    background-image: url("./assets/background-mb.png");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    justify-content: end;

    #texto {
      margin-top: 220px;
      width: 100%;
      padding: 50px 20px;
      gap: 20px;

      h2 {
        font-size: 23px;
        line-height: 26px;
      }

      p {
        color: #e9e9e9;
        font-size: 12px;
        line-height: 14px;
        font-weight: 400;
      }
    }

  }

  #footer {
    padding: 50px 20px;

    p {
      font-size: 10px;
      line-height: 14px;
      text-align: justify;
      color: #e9e9e9;
      width: 100%;
    }

    #contato {
      align-self: center;
      width: 100%;

      h2 {
        color: #e9e9e9;
        font-size: 18px;
        font-weight: 600;
      }

      h3,
      p {
        color: #e9e9e9;
        font-size: 10px;
        line-height: 16px;
      }

      p {
        text-align: start;
      }

      #direitos {
        display: block;
        margin-top: 20px;

        p {
          width: auto;
          margin-bottom: 10px;
        }

        .links {
          color: #e9e9e9;

          a {
            color: #e9e9e9;
            font-size: 10px;
          }
        }
      }
    }
  }
}