* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

button {
  border: 0;
  padding: 0;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

h1,
h2 {
  font-size: 55px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  margin: 20px 0;
}

p {
  text-align: center;
  font-weight: bold;
}

.bg-img {
  left: 0;
  max-width: 99vw;
  overflow: hidden;
  z-index: -1;
  position: absolute;
  filter: brightness(0.2);
}

.whatsapp-button {
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  border-radius: 50%;
}

.whatsapp-button > img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: cover;
}

.invokers-logo {
  width: 80px;
  height: 80px;
}

#hero-section {
  min-height: 100vh; /* Garante que a seção ocupe pelo menos 100% da altura da janela */
}

#forwho-section > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 200px;
  padding: 20px;
  position: relative;
}

.forwho-item {
  font-size: 24px;
  padding: 10px;
  text-align: center;
  border: 1px solid #71717a;
  border-radius: 20px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.forwho-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;

  border-radius: 50%;
}

.cta-button {
  width: 360px;
  height: 80px;
  color: white;
  background: linear-gradient(to right, #6d28d9, #ec4899);
  border-radius: 20px;
  font-size: 32px;
  font-family: "Bebas Neue", sans-serif;
  cursor: pointer;
  animation-name: grow;
  animation-duration: 500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
  margin-top: 40px;
  margin-bottom: 18px;
}

#hero-section > p {
  font-size: 16px;
}

#courses-section > p {
  font-size: 22px;
  margin: 20px 0;
  color: #a1a1aa;
  font-weight: bold;
}

.title {
  margin-top: 120px;
}

.courses-list {
  width: 100%;
}

.item {
  width: 100%;
  height: 450px;
}

.feedbacks-list {
  width: 100%;
}

.feedbacks-list > img {
  width: 300px;
  height: 450px;
}

.benefits-list {
  display: flex;
  gap: 20px;
}

.benefits-item {
  background-color: gray;
}

.coach-list {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.coach-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.coach-info > p {
  color: #18181b;
}

.coach-info > img {
  width: 100%;
  border-radius: 20px;
}

.mentorias-section {
  padding: 20px;
}

.mentorias-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mentorias-content img {
  border-radius: 20px;
}

.text-content {
  flex: 1;
}

.mentoria-image {
  width: 100%;
  max-width: 600px;
  flex-shrink: 0; /* Garante que a imagem não encolha */
}

.bonus-img {
  width: 100%;
  border-radius: 20px;
  margin: 20px 0;
}

.countdown-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #6d28d9, #ec4899);
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  z-index: 1000;
  font-weight: bold;
}

.bonus-list > li > img {
  width: 25px;
  height: 25px;
}

.bonus-list > li {
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes grow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Responsividade para tablets */
@media screen and (max-width: 1024px) {
  section {
    padding: 40px;
  }

  h1,
  h2 {
    font-size: 40px;
    line-height: 45px;
  }

  p {
    font-size: 18px;
  }

  #courses-section > p {
    font-size: 18px;
  }

  .cta-button {
    width: 320px;
    height: 70px;
    font-size: 28px;
  }

  .invokers-logo {
    width: 60px;
    height: 60px;
  }

  #forwho-section > div {
    grid-template-columns: 1fr; /* Coluna única */
    gap: 100px;
  }

  .forwho-img {
    width: 250px;
    height: 250px;
  }

  .feedbacks-list > img {
    width: 250px;
    height: 350px;
  }
}

/* Responsividade para celulares */
@media screen and (max-width: 768px) {
  section {
    padding: 20px;
  }

  h1,
  h2 {
    font-size: 30px;
    line-height: 30px;
  }

  p {
    font-size: 16px;
  }

  .item {
    width: 100%;
  }

  .cta-button {
    width: 280px;
    height: 60px;
    font-size: 24px;
  }

  .invokers-logo {
    width: 50px;
    height: 50px;
  }

  .mentorias-content {
    flex-direction: column;
  }

  .coach-info {
    flex-direction: column;
  }

  #forwho-section > div {
    gap: 20px;
  }

  .forwho-img {
    width: 200px;
    height: 200px;
  }

  .feedbacks-list > img {
    width: 200px;
    height: 300px;
  }

  .forwho-item {
    font-size: 14px;
  }

  .forwho-img {
    position: relative;
  }
}
