:root{
  --white: #ffffff;
  --gray-white: #F6F6F9;
  --gray-light: #8B8BB2;
  --gray-black: #000000;
  --purple-light: #B1A0C5;
  --purple-white: #D5BFEF;
  --purple: #CFBAE8;
  --purple-black: #C5B0DD;
}
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	font-size: calc(100vw / 1920 * 10);
	line-height: 1;
	font-family: 'Arboria';
  color: var(--gray-light);
	font-weight: 300;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
  color: inherit;
}
p {
	margin: 0;
  text-align: justify;
}
li{
  list-style: none;
}
h2{
  font-size: 5rem;
  font-weight: 500;
  color: var(--gray-black);
}
section, header, footer{
  padding: 6rem;
}

.button__back{
  padding: 3rem 5rem;
  border-radius: 50rem;
}
.button__line{
  text-decoration: underline;
}

/* HEADER */
.header{
  background: var(--purple);
  position: relative;
}
.header__wrapper{
  position: relative;
  z-index: 1;
}
.nav__wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo{
  width: 13.5rem;
}
.nav__menu{
  color: var(--gray-black);
  display: flex;
  font-size: 2.5rem;
  font-weight: normal;
}
.nav__item{
  margin-left: 4rem;
}
.nav__item a {
  color: var(--gray-black);
  position: relative;
  text-decoration: none;
}
.nav__item a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: var(--gray-black);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.nav__item a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.header__banner{
  position: relative;
}
.header__slider{
  overflow: hidden;
}
.header__slider__wrapper{
  display: inline-flex;
  width: 100%;
}
.info__arrow__button{
  background: var(--white);
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top:30rem;
  right: 0;
  cursor: pointer;
  transition: transform .3s ease-in-out;
}
.info__arrow__button:hover{
  transform: scale(1.1);
}
.slider__slide{
  width: 100%;
  flex: 1 0 100%;
}
.slider__slide__wrapper{
  display: flex;
  align-items: center;
}
.slide__info{
  width: 50%;
  padding-right: 6rem;
  display: flex;
  flex-direction: column;
}
.slide__info__h1{
  font-weight: 500;
  color: var(--gray-black);
  font-size: 4.5rem;
  line-height: 1.2;
}
.info__slider{
  margin-top: 6rem;
}
.info__text{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slide__info__text{
  font-size: 2.5rem;
  color: var(--gray-black);
  line-height: 1.5;
  overflow: hidden;
  margin-top: 1rem;
}
.slider__guides{
  margin-top: 4rem;
  display: flex;
  transform: rotateX();
}
.slider__guide{
  width: 6rem;
  height: 1rem;
  border-radius: 10rem;
  background: var(--purple-light);
  margin-right: 2rem;
  cursor: pointer;
}
.slider__guide__select{
  background: var(--gray-black);
}
.slide__info__ctas{
  display: flex;
  margin: 4rem 0;
  font-size: 3rem;
  color: var(--white);
  align-items: center;
}
.cta__buy{
  font-weight: 500;
  background: var(--gray-black);
  margin-right: 4rem;
  transition: background .3s ease-in-out, color .3s ease-in-out;
}
.cta__buy:hover{
  background: var(--white);
  color: var(--gray-black);
}
.cta__read{
  font-weight: normal;
  transition: color .3s ease-in-out;
}
.cta__read:hover{
  color: var(--gray-black);
}
.slide__info__message{
  font-size: 2rem;
  color: var(--gray-black);
  width: 45rem;
  line-height: 1.5;
}
.slide__book{
  width: 50%;
  position: relative;
}
.slide__book__image{
  width: 80rem;
}
.slide__book__price{
  position: absolute;
  bottom: 2rem;
  left: 15rem;
  z-index: 2;
}
.book__price__back{
  width: 22rem;
  height: 22rem;
  background: var(--white);
  border-radius: 50%;
}
.slide__book__price__wrapper{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.book__price{
  color: var(--gray-black);
  position: absolute;
  font-weight: 500;
  text-align: center;
  z-index: 3;
}
.book__price__word{
  font-size: 3rem;
  text-transform: uppercase;
}
.book__price__money{
  display: flex;
  font-size: 10rem;
  align-items: center;
  margin-top: -1.5rem;
}
.book__price__money span{
  font-size: 9rem;
}
.banner__back{
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.back__left{
  width: 50%;
  height: 100%;
  background: var(--purple);
}
.back__right{
  width: 50%;
  height: 100%;
  display: flex;
}
.right__color:nth-child(1){
  width: 33%;
  height: 100%;
  background-color: var(--purple-white)
}
.right__color:nth-child(2){
  width: 33%;
  height: 100%;
  background-color: var(--purple)
}
.right__color:nth-child(3){
  width: 34%;
  height: 100%;
  background-color: var(--purple-black)
}

/* SECTION EDITORIAL */
.pescadito__info{
  padding-top: 15rem;
}
.pescadito__info__wrapper{
  display: flex;
  align-items: center;
}
.pescadito__info__brand{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pescadito__info__logo{
  width: 43rem;
}
.pescadito__info__networks{
  margin-top: 4rem;
}
.info__network{
  height: 4rem;
  margin: 0 4rem;
}
.pescadito__info__text{
  width: 50%;
}
.pescadito__info__p{
  font-size: 2.5rem;
  line-height: 2;
  width: 75rem;
  margin-top: 4rem;
}

/* SECTION SANTIAGO */
.santiago__info{
  margin-top: 10rem;
}
.santiago__info__wrapper{
  display: flex;
  align-items: center;
}
.santiago__info__text{
  width: 50%;
}
.santiago__info__p{
  font-size: 2.5rem;
  line-height: 2;
  width: 75rem;
  margin-top: 4rem;
}
.santiago__info__brand{
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.santiago__info__portrait{
  width: 90rem;
}
.santiago__info__networks{
  margin-top: 4rem;
}

/* SECTION AWARDS */
.awards{
  margin-top: 10rem;
  padding-left: 0;
}
.awards__wrapper{
  display: flex;
  align-items: center;
}
.awards__media{
  width: 50%;
}
.awards__image{
  width: 100%;
}
.awards__info{
  width: 50%;
  margin-left: 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.awards__info__p{
  font-size: 2.5rem;
  line-height: 2;
  width: 75rem;
  margin-top: 4rem;
}
.awards__info__see{
  display: flex;
  align-items: center;
  background: var(--purple);
  margin-top: 4rem;
  transition: background .3s ease-in-out;
}
.awards__info__see:hover{
  background: var(--gray-light);
}
.awards__info__see:hover span{
  color: var(--gray-black);
}
.awards__info__see span{
  color: var(--white);
  font-size: 3rem;
  margin-right: 10rem;
  font-weight: 500;
  transition: color .3s ease-in-out;
}
.awards__info__see img{
  width: 4rem;
}

/* SECTION PROX. PUBLICACIONES */
.publications{
  margin-top: 10rem;
}
.publication__wrapper{
  display: flex;
  align-items: center;
}
.publications__info{
  width: 50%;
}
.publications__info__p{
  font-size: 2.5rem;
  line-height: 2;
  width: 75rem;
  margin-top: 4rem;
}
.publications__info__soon{
  font-size: 5rem;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 500;
  margin-top: 3rem;
}
.publications__media{
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publications__image{
  width: 80rem;
  position: relative;
  margin-top: 8rem;
  z-index: 1;
}
.publications__media__back{
  width: 72rem;
  height: 72rem;
  background: var(--purple-white);
  border-radius: 50%;
  position: absolute;
  top: 0;
  z-index: 0;
}

/* SECTION LIBRARY */
.library{
  background: var(--purple-white);
  margin-top: 10rem;
  padding: 15rem 0;
}
.library__wrapper{
  display: flex;
}
.library__media{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.library__image{
  width: 56rem;
}
.library__info{
  width: 50%;
}
.library__info__p{
  font-size: 2.5rem;
  line-height: 2;
  width: 75rem;
  margin-top: 4rem;
  color: var(--white);
}
.library__info__buttons{
  display: flex;
  align-items: center;
  margin-top: 4rem;
  font-weight: 500;
}
.library__info__ask{
  background: var(--gray-black);
  font-size: 3rem;
  color: var(--white);
  margin-right: 4rem;
  transition: background .3s ease-in-out, color .3s ease-in-out;
}
.library__info__ask:hover{
  background: var(--white);
  color: var(--gray-black);
}
.library__info__statement{
  color: var(--white);
  font-size: 3rem;
  transition: color .3s ease-in-out;
}
.library__info__statement:hover{
  color: var(--gray-black);
}

/* SECTION PUBLISH */
.publish{
  margin-top: 10rem;
  padding-right: 0;
}
.publish__wrapper{
  display: flex;
  align-items: flex-start;
}
.publish__info{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.publish__info__p{
  font-size: 2.5rem;
  line-height: 2;
  width: 75rem;
  margin-top: 4rem;
}
.publish__info__see{
  display: flex;
  align-items: center;
  background: var(--purple);
  margin-top: 4rem;
  transition: background .3s ease-in-out;
}
.publish__info__see:hover{
  background: var(--gray-light);
}
.publish__info__see span{
  color: var(--white);
  font-size: 3rem;
  margin-right: 10rem;
  font-weight: 500;
  transition: color .3s ease-in-out;
}
.publish__info__see:hover span{
  color: var(--gray-black);
}
.publish__info__see img{
  width: 4rem;
}
.publish__media{
  width: 50%;
  position: relative;
  height: 120rem;
}
.publish__image{
  width: 126rem;
  position: absolute;
  right: 0;
}

/* SECTION BUY */
.buy{
  margin-top: 10rem;
  padding: 6rem 0;
}
.buy__wrapper{
  display: flex;
}
.buy__wrapper p{
  font-size: 2.5rem;
  line-height: 1.8;
  position: relative;
}
.step__0{
  width: 28%;
  background: var(--gray-white);
  padding: 5rem 10rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step__0__h3{
  font-size: 5rem;
  color: var(--gray-black);
}
.step__0__p{
  margin: 3rem 0;
}
.step__0__h4{
  font-size: 3rem;
  color: var(--gray-black);
  font-weight: 500;
}
.step__arrow{
  position: absolute;
  left: 46rem;
}
.step__arrow__wrapper{
  position: relative;
}
.step__arrow__wrapper img{
  position: absolute;
  width: 3rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.step__arrow__wrapper div{
  width: 14rem;
  height: 14rem;
  background: var(--white);
  border-radius: 50%;
}
.step__1{
  width: 22%;
  background: var(--purple);
  padding: 5rem 5rem 5rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step__1__number{
  position: relative;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 6rem;
}
.step__1__number span{
  position: absolute;
  color: var(--gray-black);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.step__1__number div{
  background: var(--white);
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
}
.step__1__p{
  color: var(--white);
}
.step__1__bank{
  color: var(--gray-black);
  font-weight: 500;
  text-align: left;
  align-self: flex-start;
}
.step__1__bank span{
  font-size: 4rem !important;
  color: var(--gray-black);
  font-weight: 500;
  line-height: 1;
}
.step__2{
  width: 30%;
  background: var(--gray-white);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step__2__number{
  position: relative;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 6rem;
}
.step__2__number span{
  position: absolute;
  color: var(--white);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.step__2__number div{
  background: var(--purple);
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
}
.step__2__mail{
  font-size: 3rem;
  font-weight: 500;
  color: var(--gray-black);
  margin: 2rem 0;
  position: relative;
  text-decoration: none;
}
.step__2__mail::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: var(--gray-black);
  bottom: -1px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.step__2__mail:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

.step__2__button{
  background: var(--gray-black);
  display: flex;
  font-size: 3rem;
  font-weight: 500;
  color: var(--white);
  align-items: center;
  margin: 3rem 0;
  transition: background .3s ease-in-out, color .3s ease-in-out;
}
.step__2__button:hover{
  background: var(--gray-light);
  color: var(--gray-black);
}
.step__2__button img{
  width: 4rem;
  margin-right: 2rem;
}
.step__3{
  width: 20%;
  background: var(--purple);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step__3__number{
  position: relative;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 6rem;
}
.step__3__number span{
  position: absolute;
  color: var(--gray-black);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.step__3__number div{
  background: var(--white);
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
}
.step__3__p{
  color: var(--white);
}

/* FOOTER */
.footer{
  margin-top: 10rem;
  position: relative;
  overflow: hidden;
}
.footer__wrapper{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__info{
  position: relative;
  z-index: 2;
}
.footer__info__logo{
  width: 25rem;
  margin-top: 5rem;
}
.footer__info__line{
  height: 1px;
  background: var(--gray-light);
  width: 20%;
  margin: 3rem auto;
}
.footer__info__p{
  font-size: 2.5rem;
  width: 50rem;
  margin-bottom: 2rem;
}
.footer__info__whatsapp{
  font-size: 3rem;
  color: var(--purple);
  font-weight: 500;
  position: relative;
  text-decoration: none;
}
.footer__info__whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: var(--purple);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.footer__info__whatsapp:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.footer__info__mail{
  font-size: 3rem;
  color: var(--purple);
  font-weight: 500;
  position: relative;
  text-decoration: none;
}
.footer__info__mail::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: var(--purple);
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}
.footer__info__mail:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.footer__info__credits{
  font-size: 2.5rem;
  color: var(--gray-black);
  display: flex;
  align-items: center;
  margin-top: 15rem;
}
.footer__info__credits span{
  margin-right: 1rem;
}
.footer__info__credits img {
  width: 3.5rem;
}
.footer__back__gray{
  width: 135rem;
  height: 135rem;
  background: var(--gray-white);
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.footer__back__purples{
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60rem;
  z-index: 1;
}
.footer__back__purple{
  width: 81rem;
  height: 81rem;
  background: var(--purple);
  border-radius: 50%;
}

@media (max-width: 768px) {
	html {
		font-size: calc(100vw / 428 * 10);
	}
  section, header, footer{
    padding: 3rem;
  }
  h2{
    font-size: 3rem;
  }
  .button__back{
    padding: 2rem 3rem;
    border-radius: 50rem;
  }

  /* HEADER */
  .nav__wrapper{
    justify-content: center;
  }
  .nav__menu{
    display: none;
  }
  .header__banner{
    flex-direction: column-reverse;
  }
  .info__arrow__button{
    width: 9rem;
    height: 9rem;
    top: 10rem;
  }
  .info__arrow{
    width: 5rem;
  }
  .slider__slide__wrapper{
    flex-direction: column-reverse;
  }
  .slide__info{
    width: 100%;
    padding-right: 0;
  }
  .slide__info__h1{
    font-size: 3rem;
    margin-top: 2rem;
  }
  .slide__info__text{
    font-size: 2rem;
  }
  .slide__info__ctas{
    font-size: 2.5rem;
    flex-direction: column;
    order: -1;
  }
  .slider__guides{
    order: -1;
    align-self: center;
    margin-bottom: 1rem;
  }
  .cta__buy{
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .slide__info__message{
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    order: -1;
  }
  .slide__book{
    width: 100%;
  }
  .slide__book__image{
    width: 100%;
  }
  .slide__book__price{
    left: 0;
  }
  .banner__back{
    display: none;
  }
  .book__price__back{
    width: 14rem;
    height: 14rem;
  }
  .book__price__word{
    font-size: 2rem;
  }
  .book__price__money{
    font-size: 7rem;
    margin-top: -1rem;
  }
  .book__price__money span{
    font-size: 4rem;
  }

  /* SECTION EDITORIAL */
  .pescadito__info{
    padding-top: 7rem;
  }
  .pescadito__info__h2{
    margin-top: 4rem;
  }
  .pescadito__info__wrapper{
    flex-direction: column-reverse;
  }
  .pescadito__info__brand{
    width: 100%;
  }
  .pescadito__info__logo{
    width: 20rem;
  }
  .pescadito__info__text{
    width: 100%;
  }
  .pescadito__info__p{
    font-size: 2rem;
    width: 100%;
    margin-top: 2rem;
    line-height: 1.5;
  }

  /* SECTION SANTIAGO */
  .santiago__info{
    margin-top: 0;
  }
  .santiago__info__wrapper{
    flex-direction: column;
  }
  .santiago__info__text{
    width: 100%;
  }
  .santiago__info__h2{
    margin-top: 4rem;
  }
  .santiago__info__p{
    font-size: 2rem;
    width: 100%;
    margin-top: 2rem;
    line-height: 1.5;
  }
  .santiago__info__brand{
    width: 100%;
  }
  .santiago__info__portrait{
    width: 100%;
  }

  /* SECTION AWARDS */
  .awards{
    margin-top: 0;
    padding-left: 3rem;
  }
  .awards__wrapper{
    flex-direction: column;
  }
  .awards__media{
    width: 100%;
  }
  .awards__info{
    width: 100%;
    margin-left: inherit;
    align-items: center;
  }
  .awards__info__h2{
    margin-top: 4rem;
  }
  .awards__info__p{
    font-size: 2rem;
    width: 100%;
    margin-top: 2rem;
    line-height: 1.5;
  }
  .awards__info__see span{
    font-size: 2.5rem;
    margin-right: 5rem;
  }

  /* SECTION PROX. PUBLICACIONES */
  .publications{
    margin-top: 0;
  }
  .publication__wrapper{
    flex-direction: column-reverse;
  }
  .publications__info{
    width: 100%;
  }
  .publications__info__h2{
    margin-top: 3rem;
  }
  .publications__info__p{
    font-size: 2rem;
    width: 100%;
    line-height: 1.5;
  }
  .publications__info__soon{
    font-size: 4rem;
  }
  .publications__media{
    width: 100%;
  }
  .publications__image{
    width: 100%;
    margin-top: 5rem;
  }
  .publications__media__back{
    width: 35rem;
    height: 35rem;
  }

  /* SECTION LIBRARY */
  .library{
    margin-top: 3rem;
    padding: 6rem 3rem 8rem;
  }
  .library__wrapper{
    flex-direction: column;
  }
  .library__media{
    width: 100%;
  }
  .library__image{
    width: 100%;
  }
  .library__info{
    width: 100%;
  }
  .library__info__h2{
    margin-top: 4rem;
  }
  .library__info__p{
    font-size: 2rem;
    width: 100%;
    margin-top: 2rem;
    line-height: 1.5;
  }
  .library__info__buttons{
    flex-direction: column;
  }
  .library__info__ask{
    font-size: 2.5rem;
    margin-right: 0;
    margin-bottom: 3rem;
  }

  /* SECTION PUBLISH */
  .publish{
    margin-top: 0;
    padding: 3rem 0;
  }
  .publish__wrapper{
    flex-direction: column-reverse;
  }
  .publish__info{
    width: 100%;
    padding: 0 3rem;
  }
  .publish__info__h2{
    margin-top: 3rem;
  }
  .publish__info__p{
    font-size: 2rem;
    width: 100%;
    margin-top: 2rem;
    line-height: 1.5;
  }
  .publish__info__see span{
    font-size: 2.5rem;
    margin-right: 5rem;
  }
  .publish__media{
    width: 100%;
    height: auto;
  }
  .publish__image{
    width: 100%;
    position: static;
  }

  /* SECTION BUY */
  .buy{
    margin-top: 0;
    padding: 6rem 0;
  }
  .buy__wrapper{
    flex-direction: column;
  }
  .buy__wrapper p{
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
  }
  .step__0{
    width: 100%;
    padding: 5rem;
    text-align: center;
  }
  .step__0__h3{
    font-size: 3.5rem;
  }
  .step__arrow{
    display: none;
  }
  .step__1{
    width: 100%;
    padding: 5rem;
  }
  .step__1__number{
    margin-bottom: 3rem;
  }
  .step__1__bank{
    align-self: center;
  }
  .step__2{
    width: 100%;
  }
  .step__2__number{
    margin-bottom: 3rem;
  }
  .step__2__mail{
    font-size: 2rem;
  }
  .step__2__button{
    font-size: 2.5rem;
  }
  .step__3{
    width: 100%;
  }
  .step__3__number{
    margin-bottom: 3rem;
  }

  /* FOOTER */
  .footer{
    margin-top: 0;
    width: 100%;
  }
  .footer__info__p{
    width: 100%;
    font-size: 2rem;
  }
  .footer__info__mail{
    font-size: 2rem;
  }
  .footer__info__credits{
    margin-top: 10rem;
    font-size: 2rem;
    flex-direction: column;
  }
  .footer__back__purples{
    bottom: -65rem;
  }
}