#season-one {

    height: 60vh;
    width: 100vw;
    background-image: url("https://img.freepik.com/fotos-gratis/conceito-de-negocio-com-equipe-de-perto_23-2149151159.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    justify-content: center;
}

a{
  overflow-y: hidden;
}


h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: whitesmoke;
    text-shadow: 0 3px 6px black;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    color: whitesmoke;
    font-weight: 400;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#season-two {
    height: auto;
    padding: auto;
    width: 100vw;
    background-color: aliceblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

h3 {
    margin-top: 3.5vh;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.results {
    width: 80vw;
    display: flex;
    flex-wrap: wrap; /* permite quebra de linha */
    justify-content: center;
    gap: 20px; /* espaço entre os cards */
    margin: 10px auto;
    padding: 10px;
  }
  
  .resultCard {
    position: relative;
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
    height: 300px;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(0, 145, 24, 0.7);
    background-position: center;
    overflow-y: hidden;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
  }
  
  .resultCard2 {
    position: relative;
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
    overflow-y: hidden;
    height: 300px;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(149, 77, 0, 0.7);
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
  }

  .resultCard3 {
    position: relative;
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
    height: 300px;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(0, 27, 145, 0.7);
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    overflow-y: hidden;
    margin: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
  }
  
  .resultCard:hover, .resultCard2:hover, .resultCard3:hover {
    transform: translateY(-5px);
    overflow-y: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }
  
  .resultCard .overlay, .resultCard2 .overlay, .resultCard3 .overlay {
    width: 100%;
    padding: 1.5rem;
    overflow-y: hidden;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for text contrast */
    color: white;
    text-align: center;
  }
  
  .resultCard h4, .resultCard2 h4, .resultCard3 h4 {
    font-size: 1.3rem;
    overflow-y: hidden;
    text-shadow: 0 3px 6px black;
    margin-bottom: 0.5rem;
  }
  
  .resultCard p, .resultCard2 p, .resultCard3 p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    overflow-y: hidden;
  }
  
  .resultCard button, .resultCard2 button, .resultCard3 button {
    background-color: #ffffff;
    color: #0a2e97;
    border: none;
    overflow-y: hidden;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    overflow-y: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .resultCard button:hover, .resultCard2 button:hover, .resultCard3 button:hover {
    background-color: #000000;
    color: #ffffff;
    overflow-y: hidden;
  }
  
  .resultCard i, .resultCard2 i, .resultCard3 i {
    margin-left: 0.5rem;
    overflow-y: hidden;
  }



@media (max-width: 1150px) {
    #season-one {
        height: 50vh;
        width: 100vw;
        background-image: url("https://img.freepik.com/fotos-gratis/conceito-de-negocio-com-equipe-de-perto_23-2149151159.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-color: rgba(0, 0, 0, 0.7);
        background-blend-mode: overlay;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        padding: 4rem 1rem;
    }

    h1 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1rem;
        color: whitesmoke;
        text-shadow: 0 3px 6px black;
        font-weight: 700;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    h2 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
        color: whitesmoke;
        font-weight: 400;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    #season-two {
        height: auto;
        padding: auto;
        width: 100vw;
        background-color: aliceblue;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    h3 {
        margin-top: 3.5vh;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
        color: #2c3e50;
        font-weight: 700;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .resultCard,
    .resultCard2,
    .resultCard3 {
      flex: 1 1 100%;
      max-width: 100%;
    }
      
      
}
