* {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  span {
    color: #E5A75E; 
  }

  .event-date {
    display: flex;
    align-items: center;
    justify-content:space-between;
    max-width: 270px;
  }

  input {
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    width: 400px;
    background: rgb(252, 252, 252);
  }

  @keyframes wave {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
    /* Faz um efeito de onda no botão */
  }

  .subscribe-btn {
    text-decoration: none;
    width: 400px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    color: #000000;
    box-shadow: 0px 0px 20px rgb(156, 156, 156);
    border-radius: 8px;
    overflow: hidden;
    transform: translate(0%, 0%);
    transition: .5s all;
    background: linear-gradient(to right, #06BF00, #048700);
    background-size: 200% 200%;
    animation: wave 3s ease infinite;
    padding: 15px 15px;
    letter-spacing: 1px;
  }

  .subscribe-btn:hover {
    background: linear-gradient(to right, #047a00, #066403);
  }

  .hero-session {
    display: flex;
    align-items: center;
    width: 100vw;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.99) 0%, rgba(70, 65, 65, 0.9));
    color: #ffffff;
    padding: 50px 0 0 50px;
  }

  .hero-left h1 {
    font-size: 32px;
    color: hsl(32, 72%, 63%);
    text-shadow: 0px 0px 40px rgb(182, 104, 2);
  }

  .hero-left {
    max-width: 700px;
  }

  .hero-left button {
    gap: 30px;
  }

  .hero-right img {
    padding-bottom: 0;
    padding-left: 180px;
    padding-right: 150px; 
  }

  .agenda-session {
    width: 100vw;
    background-color: #ffffff;
    padding: 50px;
    display:block;
  }

  .agenda-title {
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0px 0px 40px rgb(0, 0, 0);
  }

  .who-is-session {
    width: 100vw;
    background-color: #000000;
    color: white;
    padding: 50px;
  }

  .who-is-session p {
    line-height: 27px;
  }

  .calendar {
    height: 50px;
  }

  .day1 h2, .day2 h2, .day3 h2 {
    margin: 10px 0 20px;
  }

  .day2 {
    background: #E5A75E;
    border-radius: 10px;
    padding: 50px;
    width: 30vw;
    height: auto;
    box-shadow: 0 0 10px rgba(211, 128, 4, 0.9);
    margin-bottom: 10px;
    margin-left: 50vw;
  }

  .day1, .day3 {
    background: #000000;
    border-radius: 10px;
    padding: 50px;
    width: 30vw;
    height: auto;
    color: #E5A75E;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    margin-left: 15vw;
  }


  /* Estilos para telas menores que 768px (celulares) */
@media (max-width: 767px) {
    .hero-session {
      flex-direction: column;
      padding: 30px 30px 0 30px;
    }
  
    .hero-left {
      text-align: center;
    }
  
    .hero-left h1 {
      font-size: 28px;
    }
  
    .hero-left h3 {
      font-size: 18px;
    }
  
    .event-date {
      justify-content: space-around;
      text-align:justify;
      font-size: 14px;
      margin-left: 30px;
    }
  
    input {
      width: 100%;
    }

    .subscribe-btn {
      width: auto;
      padding: 8px 50px;
      font-size: 18px;

    }
  
    .hero-right img {
      padding: 30px 0 0 0;
      width: 100%;
      max-width: 250px;
    }
  
    .agenda-session {
      padding: 30px;
    }
  
    .day1,
    .day2,
    .day3 {
      width: 100%;
      height: auto;
      margin-left: 0px;
      margin-bottom: 20px;
    }
  
    .who-is-session {
      padding: 30px;
    }
  }