/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}
a{
  text-decoration: none;
  color: #000;
}
img{
  width: 100%;
  height: auto;
}

main{
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 768px){
  main{
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px){
  main{
    grid-template-columns: 1fr;
  }
}

.info{
  background-color: #fff;
  padding: 1rem;
  height: 100vh;
}
@media (max-width: 768px){
  .info{
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.info .logo {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info .logo img{
  width: 30%;
  height: auto;
}
@media (max-width: 280px){
  .info .logo img{
    width: 30%;
  }
}
.info .user{
  padding: 1rem 0;
}
.info .user .name{
  font-size: 3rem;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 280px){
  .info .user .name{
    font-size: 2.5rem;
  }
}
.info .user .number_photos{
  font-size: 2rem;
  margin: 0;
  padding-top: 0;
  font-weight: 800;
}
@media (max-width: 280px){
  .info .user .number_photos{
    font-size: 1.5rem;
  }
}
.info .user .mail{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  color: #616161;
}
@media (max-width: 360px){
  .info .user .mail{
    margin-top: 1rem;
    flex-direction: column;
    align-items: start;
  }
  .info .user .mail p{
    margin: 0;
  }
}
.info .download{
  margin: 1rem 0 1rem 0;
}

.info .download .button{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 10px;
  background-color: rgb(234, 68, 58);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
}

.section_gallery .button{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: .5rem 0;
  padding: .3rem;
  border-radius: 5px;
  background-color: rgb(234, 68, 58);
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
}

.info .download .button.button-inverse{
  background-color: #0dcaf0;
  color: #fff;
}

.info .download .button.button-inverse:hover{
  background-color: #fff;
  color: #0dcaf0;
  border: 1.5px solid #0dcaf0;
}

.info .download .button.button-warning{
  background-color: rgb(222, 179, 24);

}
.info .download .button.button-warning:hover{
  background-color: #fff;
  color: rgb(248, 239, 130);
  border: 1.5px solid rgb(222, 179, 24);
  
}
.section_gallery .button.button-dark{
  background-color: rgb(3, 2, 0);
  border: 1.5px solid rgb(1, 1, 0);


}
.section_gallery .button.button-dark:hover{
  background-color: #000;
  color: rgb(255, 251, 251);
  border: 1.5px solid rgb(1, 1, 0);
  
}


@media (max-width: 280px){
  .info .download .button{
    padding: 1rem;
    gap: 1rem;
  }
}
.info .download .button:hover{
  background-color: #fff;
  color: rgb(234, 68, 58);
  border: 1.5px solid rgb(234, 68, 58);
}
.info .download img{
  width: 3rem;
  height: auto;
}
.info .download p{
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  font-weight: 800;
}
@media (max-width: 280px){
  .info .download p{
    font-size: 1.2rem;
  }
}
.info .contact{
  margin-top: 5rem;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 280px){
  .info .contact{
    margin-top: 1.5rem;
    padding: 0.5rem;
  }
}
.info .contact a{
  font-size: 1rem;
  color: #000;
  transition: all 0.3s ease;
  text-align: center;
}
.info .contact a:hover{
  color:rgb(234, 68, 58)
}



.gallery{
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .pswp-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}
@media (max-width: 768px){
  .gallery .pswp-gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 280px){
  .gallery .pswp-gallery{
    grid-template-columns: 1fr;
  }
}
.gallery .pswp-gallery a{
  display: block;
  overflow: hidden;
  border-radius: 10px;
  max-height: 200px;
}
@media (max-width: 280px){
  .gallery .pswp-gallery a{
    max-height: 150px;
  }
}
.gallery .pswp-gallery a:hover img{
  transform: scale(1.05);
} 
.gallery .pswp-gallery a img{
  width: 100%;
  height: 100% !important;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;

}

.btn-app{
 display: inline-block;
 width: 10rem;
 text-align: center;
}

.btn-app img{
  display: block;
  width: 100%;
}

.info .btn-app img{
  width: 10rem;
}
section.app{
  text-align: center;
}


/*********** COMBO ************/

.combos{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  height: 100%;
  margin: 5rem 0;
}

@media (max-width: 768px){
  .combos{
    flex-direction: column-reverse;
  }
}

.combos .combo1,
.combos .combo2{
  width: 400px;
  border-radius: 5px;
  padding: 2rem;
  color: #000;
  border: 1px solid #000;
  transition: all 0.5s ease;
}
@media (max-width: 768px){
  .combos .combo1{
    width: 45%;
    margin: 0 auto;
  }
  .combos .combo2{
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 540px){
  .combos .combo1{
    width: 60%;
  }
  .combos .combo2{
    width: 65%;
  }
}
@media (max-width: 430px){
  .combos .combo1{
    width: 70%;
  }
  .combos .combo2{
    width: 75%;
  }
}
@media (max-width: 280px){
  .combos .combo1, 
  .combos .combo2{
    width: 80%;
  }
}
.combos .combo1{
  height: 20rem;
}
.combos .combo2{
  height: 22rem;
}
@media (max-width: 768px){
  .combos .combo1{
    height: 20.5rem;
  }
  .combos .combo2{
    height: 25rem;
  }
}
@media (max-width: 414px){
  .combos .combo2{
    height: 26rem;
  }
}
@media (max-width: 375px){
  .combos .combo1{
    height: 23rem;
  }
}
@media (max-width: 280px){
  .combos .combo2{
    height: 28rem;
  }

}
.combos .name{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
}
.combos .price{
  font-size: 1.2rem;
  font-weight: 400;
  margin: 1rem 0;
  text-align: center;
}
@media (max-width: 768px){
  .combos .price{
    margin-bottom: 2rem;
  }
}
.combos .includes{
  width: 80%;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: start;
  align-items: center;
}
@media (max-width: 768px){
  .combos .includes{
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin: 1rem auto;
  }
}
.combos .includes p{
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem 0;
}
@media (max-width: 768px){
  .combos .includes p{
    text-align: center;
    margin-top: 0;
  }
}
.combos .includes p span{
  font-size: 0.8rem;
  font-weight: 400;
  margin: 1rem 0;
}

.combos .buy{
  width: 30%;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 20px;
  padding: 0.5rem 0;
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
  transition: all 0.3s ease;
}

.combos .combo1:hover{
  background: linear-gradient(220.55deg, #8FFF85 0%, #39A0FF 100%);
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo1:hover .buy{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo1 .buy:hover{
  transform: scale(1.1);
}

.combos .combo2:hover{
  background: linear-gradient(220.55deg, #FADD76 0%, #9F3311 100%);
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo2:hover .buy{
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.combos .combo2 .buy:hover{
  transform: scale(1.1);
}


.parrrafo{
	max-width: 15%;
}