*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
/*
    @include respond(tab-land) { // width < 1200?
        font-size: 56.25%; //1 rem = 9px, 9/16 = 50%
    }

    @include respond(tab-port) { // width < 900?
        font-size: 50%; //1 rem = 8px, 8/16 = 50%
    }

    @include respond(big-desktop) {
        font-size: 75%; //1rem = 12, 12/16
    }*/
}

body {
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    color: #474747;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

h2 {
  font-size: 4.3rem;
  font-weight: 800;
}

h3 {
  font-size: 3.5rem;
  font-weight: 800;
}

p {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #474747;
}

.only-mobile {
  display: none;
}

header {
  position: absolute;
  background-color: transparent;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px 4% 0;
  align-items: center;
}

.header-logo {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 3.4rem;
  font-weight: bold;
}

.header-logo > a {
  color: #fff;
  text-decoration: none;
}

.mobile-menu-toggle,
.mobile-menu-redes {
  display: none;
}

nav > ul {
  display: flex;
  list-style-type: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  align-items: center;
  color: #2b2b2b;
}

nav > ul > li:not(:last-child) {
  margin-right: 5rem;
}

nav > ul > li:last-child {
  border: 1px solid #fff;
  padding: .6rem 1.5rem;
  margin-left: 8rem;
}

nav > ul > li > a {
  color: #2b2b2b;
  text-decoration: none;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.seccion-landing {
  background-color: #ffa440;
  padding: 18rem 20% 0rem;
}

.seccion-landing > h1 {
  color: #fff;
  font-size: 4.6rem;
  text-align: center;
  line-height: 1.5;
  font-weight: 900;
}

.seccion-landing > img {
  max-width: 120%;
  margin-top: 4rem;
  z-index: 1;
}

.scroll-down {
  max-width: 100%;
}

/*
.seccion-landing::after {
  content: '';
  display: block;
  width: 100%;
  background-color: #ffa440;
  height: 100px;
  clip-path: ellipse(50% 24% at 50% 50%);
  position: absolute;
  bottom: 0;
  padding: 0;
  margin: 0;
  transform: translateY(136%);
}
*/

.seccion-sobre-mi {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  grid-column-gap: 2.5rem;
  padding: 15rem 20% 0;
  align-items: flex-start;
}

.sobre-mi__img {
  font-size: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sobre-mi__img::before {
  content: '';
  display: block;
  background-image: url('img/diego-pons.jpg');
  background-size: contain;
  width: 100%;
  height: 30.1rem;
  background-repeat: no-repeat;
}

.sobre-mi__txt {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.sobre-mi__txt > b {
  font-size: 2.2rem;
  font-weight: bold;
  color: #474747;
  margin-bottom: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(71,71,71,.5);
}

.sobre-mi__txt a {
  font-weight: bold;
  text-decoration: underline;
  color: #474747;
}

.seccion-notas {
  padding: 17rem 12% 0;
}


.separador-notas {
  padding: 0;
}

.separador-notas::before {
  content: '';
  display: block;
  background-image: url('img/linea-separadora.png');
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 13%;
  transform: translateY(-5rem);
  z-index: -1;
  position: absolute;
}

.seccion-notas > p {
  margin-top: 1rem;
  width: 50%;
  text-align: center;
}

.notas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 6.5rem;
  margin-top: 8rem;
  margin-bottom: 6rem;
}

.nota {
  border-top: 1px solid rgba(71,71,71,.5);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.nota > h3 {
  font-size: 2.2rem;
  color: #474747;
  margin-bottom: 1.5rem;
  margin-top: 3.5rem;
}

.nota > a {
  color: #ffa440;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 3.5rem;
  text-decoration: none;
  display: inline-block;
}

.seccion-podcast {
  padding: 12rem 20% 10rem 12%;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-column-gap: 7rem;
}

.seccion-podcast__img {
  width: 100%;
}

.seccion-podcast__txt {
  display: flex;
  flex-direction: column;
  padding-right: 5%;
}

.seccion-podcast__txt > p {
  margin-top: 1.5rem;
}


.seccion-podcast__btn {
  background-color: #ffa440;
  color: #fff;
  font-weight: bold;
  padding: 1.5rem 6rem;
  margin-top: 3rem;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-block;
  align-self: flex-end;
  text-decoration: none;
}

.seccion-separador-1 {
  background-color: #ffa440;
  flex-direction: row;
  padding: 10rem 12%;
}

.seccion-separador-1 > p {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

.seccion-separador-1 > img {
  max-width: 45%;
  margin-left: 6rem;
}

.seccion-servicios {
  padding: 10rem 12% 4rem;
}

.servicios__grid {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-column-gap: 8rem;
}

.servicios__grid > img {
  max-width: 100%;
  grid-column: 2/3;
  grid-row: 1/3;
}

.servicio > h3 {
  margin-bottom: 1.5rem;
}

.paquetes__grid {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 6.5rem;
  margin-top: 11rem;
  display: grid !important;
  grid-row-gap: 8rem;
}

.paquete {
  border-top: 1px solid rgba(71,71,71,.5);
}

.paquete:nth-of-type(4),
.paquete:nth-of-type(5) {
  transform: translateX(50%);
}

.paquete > h4 {
  font-size: 2.2rem;
  color: #474747;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

.seccion-separador-2 {
  background-color: #ffa440;
  flex-direction: row;
  padding: 10rem 11.5%;
}

.seccion-separador-2 > p {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
}

.seccion-separador-2 > img {
  max-width: 45%;
  margin-right: 6rem;
}

.seccion-workshops {
  padding: 10rem 12% 1rem;
}

.workshops__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-gap: 6rem;
}

.workshops__grid > img {
  max-width: 100%;
  grid-column: 1/2;
  grid-row: 1/3;
}

.workshop {
  grid-column: 2/3;
}

.workshop > h3 {
  margin-bottom: 1.5rem;
}

.workshop-ul {
  margin: 2rem 0;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #474747;
  list-style-position: inside;
}

.workshop-ul > li {
  margin-bottom: 2rem;
}


.charlas__grid {
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 6.5rem;
  margin-top: 6rem;
  display: grid !important;
  margin-bottom: 4rem;
}

.charla {
  border-top: 1px solid rgba(71,71,71,.5);
}

.charla > h4 {
  font-size: 2.2rem;
  color: #474747;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  line-height: 1.6;
}

.charla > p {
  width: 85%;
}

.seccion-separador-3 {
  background-color: #2b2b2b;
  padding: 10rem 11.5% 0;
}

.seccion-separador-3 > p {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  max-width: 55rem;
}

.seccion-separador-3 > img {
  margin-top: 2rem;
  max-width: 100%;
  transform: translateY(5rem);
  z-index: 1;
}

.seccion-contacto {
  padding: 12rem 12% 4rem;
}

.seccion-contacto > h2 {
  margin-bottom: 5rem;
}

.seccion-contacto > p {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

.seccion-contacto > p > a {
  text-decoration: none;
  color: #474747;
}

.seccion-contacto > p:nth-of-type(2) {
  margin-top: 5rem;
}

.seccion-contacto > img {
  width: 8rem;
  margin: 5rem 0;
}

.seccion-contacto form {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.seccion-contacto form > input {
  height: 4.5rem;
  border: 1px solid rgba(71,71,71,.5);
  padding: 1.2rem 2rem;
  width: 64rem;
  margin: .8rem;
  font-family: 'Montserrat', sans-serif;
  color: rgba(71,71,71,.5);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.seccion-contacto form > textarea {
  height: 14rem;
  border: 1px solid rgba(71,71,71,.5);
  padding: 1.2rem 2rem;
  width: 64rem;
  margin: .8rem;
  font-family: 'Montserrat', sans-serif;
  color: rgba(71,71,71,.5);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.seccion-contacto__redes {
  list-style-type: none;
  display: flex;
  margin-top: 7rem;
}

.seccion-contacto__redes > li:not(:last-child) {
  margin-right: 4rem;
}

.seccion-contacto__redes > li > a > img {
  width: 8rem;
}

.seccion-contacto__pie {
  font-size: 1.8rem;
  margin-top: 2.3rem;
}


#back-to-top {
  position: fixed;
  bottom: 5%;
  right: 2.5%;
  width: 60px;
  display: none;
}

#back-to-top > img {
  width: 100%;
  height: auto;
  transition: all .3s;
}

#back-to-top > img:hover {
  transform: translateY(-4px);
}

/*     BUTTONS     */


.btn-naranja {
  background-color: #ffa440;
  color: #fff;
  font-weight: bold;
  border:0;
  outline: none;
  align-self: center;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 1.5rem 6rem;
  text-decoration: none;
}

.btn-enviar {
  padding: 1.5rem 6rem;
  margin-top: 3rem;
}

.btn-fixed-width {
  width: 35rem;
}

.btn-secondary {
  border: 2px solid #ffa440;
  color: #ffa440;
  background: #fff;
  font-weight: bold;
  outline: none;
  align-self: center;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 1.5rem 0;
  margin-top: 1rem;
  text-decoration: none;
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
}

/*     TOGGLES     */


#toggle-1__btn {
  padding: 1.5rem 6rem;
  margin-top: 3rem;
}

#toggle-2__btn {
  padding: 1.5rem 3rem;
  margin-top: 5rem;
}

#toggle-3__btn {
  padding: 1.5rem 3rem;
  margin-top: 5rem;
}

.toggle__txt--hidden {
  max-height: 0;
  display: block;
  overflow: hidden;
  transition: all 1s;
}

.toggle__txt--open {
  max-height: 120rem;
  transition: all 1s;
}


/*    CURVAS     */

.curva-1 {
  width: 100%;
  height: 70px;
  background-color: #ffa440;
  clip-path: ellipse(50% 50% at 50% 50%);
  transform: translateY(-50%);
  overflow: visible;
}

.curva-2 {
  width: 100%;
  height: 30px;
  background-color: #ffa440;
  clip-path: ellipse(50% 50% at 50% 50%);
  transform: translateY(50%);
  overflow: visible;
}

.curva-3 {
  width: 100%;
  height: 30px;
  background-color: #fff;
  clip-path: ellipse(50% 50% at 50% 50%);
  transform: translateY(-50%);
  overflow: visible;
}

.curva-4 {
  width: 100%;
  height: 30px;
  background-color: #2b2b2b;
  clip-path: ellipse(50% 50% at 50% 50%);
  transform: translateY(50%);
  overflow: visible;
}


:target {
  display: block;
  position: relative;
  top: 0;
  visibility: hidden;
}

@media(min-width: 1920px){
  body {
    width: 1920px;
    margin: auto;
  }

  header {
    width: 1920px;
  }

  .separador-notas::before {
    width: 1920px;
    transform: translateY(-15rem);
  }
}


/*     MOBILE     */

@media (max-width: 768px){

  .only-mobile {
    display: block;
  }

  .only-desktop {
    display: none;
  }

  html {
      font-size: 56.25%;
  }

  p {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 3.5rem;
  }

  header {
    display: grid;
    grid-template-columns: auto 20%;
    padding: 5px 4% 0 6%;
    position: fixed;
    z-index: 10;
    background: #ffa440;
  }

  .header-logo {
    font-size: 2.8rem;
  }

  .header-nav {
    width: 100vw;
    left: -100vw;
    height: 100vh;
    transition: all .5s;
    position: fixed;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
  }

  .mob-menu--open {
    left: 0;
    transition: all .5s;
  }

  .mobile-menu-toggle {
    z-index: 10;
  }

  .mobile-menu-toggle,
  .mobile-menu-redes {
    display:block;
  }

  .header-nav > ul {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    align-items: baseline;
    font-size: 2.3rem;
    padding: 0 7%;
  }

  .header-nav > ul > li {
    width: 100%;
  }

  .header-nav > ul:first-of-type {
    padding-top: 6rem;
    background-color: #ffa440;
  }

  .header-nav > ul:first-of-type > li > a {
    color: #fff;
  }

  .header-nav > ul:first-of-type > li:not(:last-of-type)::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: relative;
    top: calc( (100vh - 6rem ) / 57);
  }


  .header-nav > ul:last-of-type > li:not(:last-of-type)::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #2b2b2b;
    position: relative;
    top: calc( (100vh - 6rem ) / 57);
  }

  .header-nav > ul:last-of-type {
    background-color: #fff;
  }

  nav > ul > li:last-child {
    border: 0;
    padding: 0;
    margin: 0;
  }

  .seccion-landing {
    padding: 12rem 5% 0;
  }

  .seccion-landing > h1 {
    font-size: 3rem;
  }

  .seccion-landing > img {
    max-width: 90%;
  }

  .scroll-down {
    max-width: 50px !important;
  }

  .seccion-sobre-mi {
    grid-template-columns: 1fr;
    padding: 2rem 5% 0;
  }

  .sobre-mi__img {
    font-size: 2.2rem;
  }

  .sobre-mi__img::before {
    height: 25rem;
    background-position: center;
    margin-bottom: 10px;
  }

  .sobre-mi__txt {
    margin-top: 2rem;
  }

  .sobre-mi__txt > b {
    font-size: 1.8rem;
    text-align: center;
  }

  .sobre-mi__txt > p {
    text-align: center;
  }

  .separador-notas {
    display: none;
  }

  .seccion-notas > p {
    width: 100%;
    margin-top: 1.5rem;
  }

  .seccion-notas {
    padding: 10rem 5% 0;
  }

  .notas__grid {
    grid-template-columns: 1fr;
    grid-row-gap: 5.5rem;
  }

  .nota > h3 {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-top: 2.4rem;
  }

  .nota > a {
    font-size: 1.4rem;
  }

  .seccion-podcast {
    padding: 10rem 5% 7rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 4rem;
  }

  .seccion-podcast__img {
    width: 80%;
    margin: auto;
  }

  .seccion-podcast__txt {
    text-align: center;
    padding-right: 0;
  }

  .seccion-podcast__btn {
    align-self: center;
    margin-top: 6rem;
  }

  .seccion-separador-1 {
    flex-direction: column;
    padding: 6rem 5%;
    text-align: center;
  }

  .seccion-separador-1 > p,
  .seccion-separador-2 > p,
  .seccion-separador-3 > p {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .seccion-separador-1 > p > br:first-of-type,
  .seccion-separador-3 > p > br:first-of-type {
    display: none;
  }

  .seccion-separador-1 > img {
    max-width: 75%;
    margin-left: 0;
    margin-top: 2.5rem;
  }

  .seccion-servicios {
    padding: 2rem 5% 4rem;
  }

  .servicios__grid {
    margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }

  .servicios__grid > img {
    max-width: 80%;
    grid-column: auto;
    grid-row: auto;
    margin: auto;
  }

  .servicio,
  .workshop {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
  }

  .servicio:not(:last-of-type),
  .workshop:not(:last-of-type) {
    border-bottom: 1px solid rgba(71,71,71,.5);
  }

  .servicio > h3,
  .workshop > h3 {
    display: inline-block;
  }

  .servicio > p,
  .workshop > p,
  .workshop > div {
    max-height: 0;
    overflow: hidden;
    transition: all .4s;
  }

  .servicio > p.servicio--open,
  .workshop > p.servicio--open,
  .workshop > div.servicio--open {
    max-height: 100rem;
  }

  .btn-toggle-servicio {
    color: #ffa440;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    background: #fff;
    border: 0;
    outline: 0;
    text-align: right;
  }

  .paquetes__grid {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .paquete {
    text-align: center;
  }

  .paquete:nth-of-type(4), .paquete:nth-of-type(5) {
    transform: none;
  }

  .seccion-separador-2 {
    background-color: #ffa440;
    flex-direction: column-reverse;
    padding: 6rem 5%;
  }

  .seccion-separador-2 > p {
    text-align: center;
  }

  .seccion-separador-2 > img {
    max-width: 65%;
    margin-right: 0;
    margin-top: 2.5rem;
  }

  .seccion-workshops {
    padding: 2rem 5% 1rem;
  }

  .workshops__grid {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .workshop {
    grid-column: auto;
  }

  .workshop-ul {
    font-size: 1.5rem;
  }

  .workshops__grid > img {
    max-width: 80%;
    margin: auto;
  }

  .charlas__grid {
    grid-template-columns: 1fr;
    grid-gap: 3.5rem;
    width: 90%;
  }

  .charla > h4 {
    font-size: 1.8rem;
  }

  .charla > p {
    width: 100%;
  }

  .seccion-separador-3 {
    padding: 6rem 5% 0;
  }

  .seccion-separador-3 > img {
    margin-top: 2rem;
    max-width: 80%;
    transform: translateY(1rem);
    z-index: 1;
  }

  .seccion-contacto {
    padding: 4rem 5% 4rem;
  }

  .seccion-contacto > p {
    font-size: 1.5rem;
  }

  .seccion-contacto > p:first-of-type > br {
    display: none;
  }

  .seccion-contacto form {
    width: 90%;
  }

  .seccion-contacto form > input {
    height: 4rem;
  }

  .seccion-contacto form > input,
  .seccion-contacto form > textarea {
    width: 100%;
    margin: .8rem 0;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  .seccion-contacto__redes {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-column-gap: 2rem;
  }

  .seccion-contacto__redes > li:not(:last-child) {
    margin-right: 0;
  }

  .seccion-contacto__redes > li > a > img {
    width: 100%;
  }

  .seccion-contacto__pie {
    font-size: 1.1rem;
    margin-top: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
  }


  .hamburger {
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }

  .hamburger:hover {
    opacity: 1;
  }

  .hamburger.is-active:hover {
    opacity: 1;
  }

  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
    position: absolute;
  }

  .hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -7px;
  }

  .hamburger-inner::after {
    bottom: -7px;
  }

  .hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  }

  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  }

  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }


  :target {
    display: block;
    position: relative;
    top: -7rem;
    visibility: hidden;
  }

  #back-to-top > img {
    display: none;
  }

}


#message fieldset {
  border: 0;
  font-size: 1.5rem;
padding: 20px;
text-align: center;
}
