/* Main */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Sections */
section {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 5vw;
  gap: 2vh;
}

.section-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4vh;
}

/* Inicio section */
#inicio {
  height: 90vh;
  font-size: 3vw;
  text-align: right;

  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: end;
  box-sizing: border-box;



}

#inicio h1 {
  font-size: 3vw;
  font-weight: normal;
}

#inicio img {
  height: 70vh;
  width: auto;
}

/* "Nuestro Equipo" section */
/* Heart image */
#nuestro-equipo img {
  height: 50vh;
  width: auto;
}

#nuestro-equipo p {
  font-weight: 300;
  font-size: 2vw;
}

#nuestro-equipo p strong {
  font-weight: 500;
}

/* "Nuestros productos" section */
#nuestros-productos {
  height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8vh;
}

#nuestros-productos .section-text {
  gap: 5vh;
}

#nuestros-productos-des {
  font-size: 2vw;
  text-align: center;
}

.products {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5vw;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3vh;
  height: fit-content;
}

.product p {
  text-align: center;
  font-size: 1.3vw;
}

.product h3 {
  font-size: 2vw;
}

.product-name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3vh;
  gap: 0.5vw;
}

.product-name h3 {
  font-size: 2vw;
  font-weight: 800;
}

.logo-text-product {
  width: 8vw;
  height: auto;
}

.logo-img-product {
  height: 12vw;
  width: auto;
}

@media only screen and (max-width: 1024px) {

  .inicio-text{

    padding-right: 5vw;

  }
  #inicio h1 {
    font-size: 3.8vw;

    font-weight: normal;
  }

  #inicio img {
    height: 50vh;
    width: auto;
  }
  #nuestros-productos {
    height: auto;
  }
  .products{

    width:90vw;
    height:40vh;

    justify-content: space-around;
    align-items: center;
  }
  product  {
    height:40vh;
    width: 35vw;
  }
  .product p{
    font-size: 2.5vw;
  }
}
@media only screen and (max-width: 760px) {
  #inicio{
    flex-direction: column;

  align-items: center;
  }
  .inicio-text{
    height: 40vh;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  #inicio h1 {
    font-size: 7.8vw;

  }
  #inicio img {
    height: 50vh;
    width: auto;
  }
  #nuestro-equipo{

    flex-direction: column-reverse;
  }
  #nuestro-equipo img{

   height: 45vh;
    width: auto;
  }
  #nuestro-equipo .section-text {
    display: flex;
    align-items: center;
    height: 40vh;

  }
  #nuestro-equipo .section-text p{
  font-size: 5.8vw;
    text-align: center;
  }


  #nuestro-equipo .section-text h2{
    font-size: 8vw;
    text-align: center;
  }
  #nuestros-productos{

    min-height:140vh;
    height: fit-content;

  }
  #nuestros-productos .section-text{

    height: 30vh;
    display: flex;
    flex-direction: column;
    gap:1vh;
    align-items: center;
    align-content: center;

  }
  #nuestros-productos .section-text h2{
    font-size: 8vw;
  }
  #nuestros-productos .section-text p{
    font-size: 5.8vw;
  }
  .products{
    flex-direction: column;
    min-height:100vh;
    height: fit-content;
  }
  .product{
    display: flex;
    flex-direction: column;
    height:75vh;

    width: 98vw;
    align-items: center;
    justify-content: space-around;
  }
  .product-name{

    width: 100%;
    height: 15vh;
  }
  .product-name h3 {
    font-size: 11.2vw;
  }
  .product-name img{
    height: 3vh;
    width: auto;
  }
  .logo-img-product {
    height: 25vh;
  }
  .product p {
    font-size: 6.5vw;
  }
}
