* {
  margin: 0;
  padding: 0;
}

/* El contenedor para superponer contenido encima del video */
.page {
  min-height: 700px;
  height: 100vh;
  overflow-x: hidden;
  color: #fff;
}

#home{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;  
  justify-content: center;
  text-align: center;

  h1{
    font-size: 53px;
    font-family: 'Roboto', sans-serif;
  }

  > div {
    margin: 10px 0px 45px 0px;
  }
  
  div p{
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 8px;
  }
  
  .btn{
    display: inline-block;
    padding: 13px 42px;
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-radius: 50px;
    border: solid 1px #fff;
    transition: background-color 0.3s ease;
    margin-bottom: 150px;
  }

  #cards{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;

    .card{
      width: 350px;
      height: 150px;
      background-color: rgb(255, 255, 255, .12);
      padding: 20px;
      border-radius: 2px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;

      div {
        height: 90%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
      }

      h2 {
        font-family: 'Roboto', sans-serif;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 20px;
      }

      p{
        font-size: 14px;
        font-family: 'Roboto', sans-serif;
      }
    }

  }
}

#innovation{
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: black;
  padding: 60px 90px;
  gap: 15px;

  div{
    height: 400px;
    width: 30%;
    min-width: 350px;
    border-radius: 10px;  
    overflow: hidden;

    img{
      display: block;  
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
  }

  div:first-child{
    height: 400px;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    flex-direction: column;
  }

  div:first-child div{
    height: 100%;
    width: 100%;

    h2 {
      font-size: 45px;
      font-family: 'Roboto', sans-serif;
      margin-bottom: 20px;
    }

    p{
      color: rgba(19, 19, 19, 0.7);
      font-size: 15px;
      font-family: 'Roboto', sans-serif;
      font-weight: 500;
    }
  }

}

@media (min-width: 800px) and (max-width: 1100px) {
  .page {
    overflow-x: hidden;
    color: #fff;
  }

  #home{
    h1{
      font-size: 42px;
    }

    > div {
      margin: 10px 0px 25px 0px;
    }

    .btn{
      padding: 10px 32px;
      font-size: 12px;
      margin-bottom: 100px;
    }

    #cards{
      gap: 15px;

      .card{
        width: 350px;
        height: 130px;

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

@media (min-width: 500px) and (max-width: 800px)  {
  .page {
    min-height: 120vh;
    height: 120vh;
    overflow-x: hidden;
    color: #fff;
 }
}
 
 @media (width < 500px)  {
    .page {
      min-height: 150vh;
      height: 150h;
      overflow-x: hidden;
      color: #fff;
    }

    #home{

      h1{
        font-size: 40px;
      }

      .btn{
        padding: 10px 32px;
        font-size: 12px;
        margin-bottom: 50px;
      }

    }
}