@font-face {
    font-family: 'Moderat';
    src: url('../font/Moderat-Regular.woff2') format('woff2'),
         url('../font/Moderat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Moderat';
    src: url('../font/Moderat-Light.woff2') format('woff2'),
         url('../font/Moderat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Moderat';
    src: url('../font/Moderat-Medium.woff2') format('woff2'),
         url('../font/Moderat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

*{
  font-family: 'Moderat';
}

body{
  margin: 0 0;
  
}

.navbar {
  background-color: #FFF;
  padding: 18px 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.logo img {
  width: 170px;
  height: 35px;
  flex-shrink: 0;
  aspect-ratio: 61/13;
  margin-left: 92px;
}

.nav-title{
  color: #1C1C32;
  text-align: right;
  font-family: Moderat;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: 92px;
}

.container{
  max-width:1440px;
  margin: 0 auto;
  background-color: #FFF;
  padding-top: 75px;
}

.eco-guide-title{
  max-width: 1000px;
  color:  #1C1C32;
  text-align: center;
  margin: auto;
  font-family: Moderat;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 49px;
  margin-top: 100px;
}

.subtitle{
  max-width: 630px;
  margin: 40px auto;
  color: #1C1C32;
  text-align: center;
  font-family: Moderat;
  font-size: 22px;
  font-style: normal;
  font-weight: 300;
  line-height: 43px;
  opacity: 0.6;
}

.startNow{
  display: flex;
  height: 53px;
  width: 187px;
  padding: 10px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border: none;
  border-radius: 87px;
  background: #D1A94C;
  cursor: pointer;
  margin: 40px auto;
  scroll-behavior: smooth;
}

.startNow:hover{
  background: #d1a94cd8;
}

.startNow p{
  color: #FFF;
  text-align: center;
  font-family: Moderat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: color 0.3s ease;
}

.answerTheseContainer{
  width: 100%;
  height: 287px;
  background-color: #EEEEEF;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.answerThese{
  max-width: 800px;
  height: 135px;
  color: #1C1C32;
  text-align: center;
  font-family: Moderat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 53px;

}

.qQuestion{
  height: 340px;
  padding: 80px;
}
.iconContainer{
  width: 564px;
  height: 500px;
  background-color: #AD614F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.questionNumber{
  color: #000;
  font-family: Moderat;
  font-size: 58px;
  font-style: normal;
  font-weight: 302;
  line-height: 50px;
  letter-spacing: -1.92px;
  opacity: 0.2;
}

.question-row {
  /*opacity: 0;
  visibility: hidden;*/
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  /*position: absolute;*/
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  /*display: none;*/
  border-top: 1px solid black;
}

.question-row.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.question-row.fade-out {
  display: none;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 1024px) {
  .question-row {
    position: relative;
    opacity: 1;
    visibility: visible;
    display: flex;
    margin-bottom: 0px;
  }

  .question-row.active {
    position: relative;
  }

  .question-row.fade-out {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}

.question{
  margin-top: 20px;
  width: 570px;
  color: #1C1C32;
  font-family: Moderat;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
}

.aButton{
  margin-top: 40px;
  padding: 0 40px;
  height: 53px;
  flex-shrink: 0;
  border: 1px solid black;
  border-radius: 100px;
  background: #FFF;
  color: #1C1C32;
  text-align: center;
  font-family: Moderat;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 53px; 
  letter-spacing: -0.68px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.aButton.selected {
  background-color: #D1A94C;
  color: #FFF;
  border: none;
}



.footer {
    display: none;
    transition: opacity 0.5s ease-in-out;
    max-width: 1440px;
    flex-shrink: 0;
    background: #1E2032;
    padding: 60px;
    margin: auto;
}

.footer.active {
    display: block;
}

.footerFormSection {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.footerFormSection.active {
    opacity: 1;
}




.footerFormSectionTitle{
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #FFF;
  font-family: Moderat;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 58px;
  margin-bottom: 39px;
  margin-top: 40;
}

.fSubtitle{
  color: #FFF;
  text-align: center;
  font-family: Moderat;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 40px;
}

.warning{
  text-align: center;
  color: #FFF;
  font-family: Moderat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  opacity: 0.6;
}

.hidden {
    display: none;
}

.fade {
    opacity: 1;
    transition: opacity 1s ease-in;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-in;
}

.containerChart {
  max-width: 1440px;
  margin: 0 auto;
  display: none;
  flex-wrap: wrap;
  gap: 40px;
}

  .score-section {
    flex: 1;
    min-width: 400px;
    text-align: center;
    padding-left: 40px;
    padding-top: 40px;
  }
  
  .score-label {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
  }
  
  .interpretation-section {
    flex: 2;
    min-width: 300px;
  }
  

  
  .interpretation-block {
    margin-bottom: 30px;
    padding-left: 60px;
  }
  
  .interpretation-block .interpretationTitle {
    width: 592px;
    height: 90px;
    color: #1C1C32;
    font-family: Moderat;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    margin-top: 40px;
  }
  
  .interpretation-block .firstP {
    width: 662px;
    height: 90px;
    color: #1C1C32;
    font-family: Moderat;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 38px;
    margin-top: 30px;
  }

  .interpretation-block .interpretationSubTitle {
    color: #1C1C32;
    font-family: Moderat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    margin: 0;
  }

  .interpretation-block .secondP {
    width: 690px;
    color: #1C1C32;
    font-family: Moderat;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 38px;
    margin: 0;
  }


  .footerFormSectionButton{
    height: 60px;
    padding: 0px 30px;
    background-color: #D1A94C;
    color: #FFF;
    text-align: center;
    font-family: Moderat;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 53px;
    letter-spacing: -0.54px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    margin: 40px auto;
  }


  /*--------------hubspot form--------------------*/
  .input{
    background-color: #1E2032;
    color: #fff!important;
  }

  .input .hs-input{
    color: #fff!important;
  }

  .legal-consent-container{
    display: flex!important;
  }

  @media screen and (max-width: 1024px) {
    
  }

  /* Media Queries para Móviles (hasta 767px) */
  @media screen and (max-width: 768px) {
    .navbar {
      width: 100%;
      position: fixed;
      top: 0;
      border-bottom: 1px solid black;
    }
    .navbar-container {
      padding: 26px 60px;
      justify-content: center;
      align-items: center;
    }

    .logo img {
      width: 131px;
      height: 28px;
      aspect-ratio: 131/28;
      margin-left: 0px;
    }
    
    .nav-title{
      display: none;
    }

    .container{
      padding: 0px;
      text-align: center;
    }

    .eco-guide-title{
      width: 372px;
      height: 100px;
      color: #1C1C32;
      text-align: center;
      font-family: Moderat;
      font-size: 34px;
      font-style: normal;
      font-weight: 500;
      line-height: 40px; 
      margin: 160px 10px 40px 10px;
    }

    .subtitle{
      width: 334px;
      color: var(--Dark, #1C1C32);
      text-align: center;
      font-family: Moderat;
      font-size: 15px;
      font-style: normal;
      font-weight: 300;
      line-height: 28px;
    }

    .startNow{
      margin-top: 57px;
      margin-bottom: 57px;
    }

    .answerTheseContainer {
      width: 95%;
      height: 297px;
      background-color: #EEEEEF;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 72px 10px;
    }


    .answerThese{  
      color: #1C1C32;
      text-align: center;
      font-family: Moderat;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 38px;
      width: 270px;
    }
    
    .question-row{
      height: auto;
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .qQuestion {
      height: auto;
      padding: 20px;
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .questionNumber{
      text-align: start;
      width: 60px;
      font-size: 48px;
    }
    .question{
      font-size: 21px;
      line-height: 35px;
      width: 350px;
      text-align: start;
    }

    .buttonContainer{
      display: flex;
      align-content: start;
      gap: 10px;
    }

    .aButton{
      height: 41px;
      line-height: 42px;
      padding: 0 25px;
    }

    .iconContainer {
      width: 100%;
      height: 300px;
      margin-top: 20px;
    }

    .iconContainer svg{
      width: 200px;
      height: 200px;
    }

    .footer{
      height: auto;
    }

    .footerFormSectionTitle {
      font-size: 26px;
      line-height: 25px;
      text-align: start;
    }

    .fSubtitle {
      font-size: 18px;
      line-height: 25px;
      text-align: start;
    }





    .containerChart{
      min-width: 200px;
      height: 400px;
    }

    .score-section {
      flex: 1;
      width: 100%;
      height: 300px;
      padding-left: 40px;
      padding-top: 140px;
  }

  .interpretation-section {
    flex: none;
    width: 100%;
  }

  .interpretation-block {
    margin-bottom: 0px;
    padding-left: 0px;
    width: 100%;
    overflow: hidden;
}

  .interpretation-block .interpretationTitle {
    width: 90%;
    height: auto;
    font-size: 20px;
    font-style: normal;
    margin-top: 0px;
    text-align: center;
    padding: 20px;
    padding-bottom: 0;
    line-height: 40px;
  }

  .interpretation-block .firstP{
    line-height: 25px;
    width: 350px;
    height: auto;
    margin-top: 0;
    text-align: center;
    padding: 20px 20px;
  }

  .interpretation-block .interpretationSubTitle {
    padding-left: 20px;
    text-align: center;
  }

  .interpretation-block .secondP{
    text-align: center;
    width: 90%;
    padding: 20px;
    line-height: 25px;
  }

  .footerFormSectionButton{
    height: 30;
    padding: 0 15px;
    line-height: 25px;
    font-size: 16px;
  }

  }
