
/* ==========================================================================
 Author's Variables
========================================================================== */

@font-face {
    font-family: 'Apfel Grotezk';
    src: url('../fonts/apfel/ApfelGrotezk-Regular.woff2') format('woff2'),
        url('../fonts/apfel/ApfelGrotezk-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apfel Grotezk';
    src: url('../fonts/apfel/ApfelGrotezk-Fett.woff2') format('woff2'),
        url('../fonts/apfel/ApfelGrotezk-Fett.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Apfel Grotezk Mittel';
    src: url('../fonts/apfel/ApfelGrotezk-Mittel.woff2') format('woff2'),
        url('../fonts/apfel/ApfelGrotezk-Mittel.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root{
    --cubic: cubic-bezier(0.33, 1, 0.68, 1);   
    --aqua:#00C4B3;
    --orange:#FF8549;
    --blue:#2D2F9D;
    --gray:#f0f0f1;
    --white:#ffffff;
    --text: 'Apfel Grotezk', sans-serif;
    --wp--style--global--content-size: unset;
    --wp--style--global--wide-size: unset;
}

#master{
	position: relative;
	width: 100vw;
	padding: 0;
	margin: 0; 
	overflow-x:hidden;
	z-index: 4;   
}

#smooth-wrapper{
    margin: 0;
}
body{
    overflow-y: hidden;
    height: 100vh;
    font-family: var(--text);
    background-color: var(--white);
    
}



body.dom-is-loaded{
    overflow-y: visible;
    height: auto;
}
h1,h2,h3,h4,h5{
    font-family: var(--text);
}
a{
    outline: 0 none;
    font-family: var(--text);
}
p{
    font-family: var(--text);
    font-size: 18px;
    line-height: 140%;
}
ul li, ol li{
    font-family: var(--text);
}
header nav{
    gap:50px !important;
    margin-right: 40px !important;
}
nav ul li a{
    color: #000;
    text-align: center;
    font-family: var(--text);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; 
    letter-spacing: 0.26px;
    text-transform: uppercase;
    text-decoration: none !important;
}
nav.big-menu ul li a{
    font-size: 60px;  
    line-height: 100%;
}
strong{
    font-weight: 600;
}

.custom-column{
    gap: 150px;
}
.pila-gap{
    padding-top: 12vh;
    padding-bottom: 12vh;
}
.top-padding{
    padding-top: 10rem;
}
.top-bottom-padding{
    padding: 7rem 0;
}
.top-bottom-small-padding{
    padding: 3rem 0;
}
.bottom-padding{
    padding-bottom: 10rem;
}
.narrow-width{
    width: 70%;
}
.small-width{
    width: 550px;
}

h1{
    text-align: center;
    font-size: 112px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%; /* 100.8px */
}
h2{
    font-size: 62px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%; /* 55.8px */
}
h3{
    font-size: 52px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%; /* 46.8px */
}
h4{
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 3px;
}
h5{
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%; /* 30.6px */
    padding: 6px 20px;
    border-radius: 30px;
    border: 1px solid var(--white);
    display: inline-block;
}
h6{
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%; /* 30.6px */
}

.wp-block-button__link{
    border-radius: 40px;
    display: flex;
    padding-top: 0.6rem;
    padding-right: 2rem;
    padding-bottom: 0.6rem;
    padding-left: 2rem;
    transition: all 0.3s;
}
.wp-block-button__link:hover{
    background-color: var(--aqua) !important;
}
.wp-block-button__link img{
    margin-right: 10px;
}

div.wpforms-container-full button[type=submit]{
    padding-left: 40px;
    padding-right: 40px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
div.wpforms-container-full button[type=submit]:hover{
        background: none !important;
    background-color: var(--aqua) !important;
}



header{
    position: fixed;
    top:0;
    width: 100vw;
    z-index: 20;
    background: var(--white);
    box-shadow: 0 4px 4px 0 rgba(228, 228, 228, 0.25);
    transition: transform 0.5s var(--cubic);
    transform: translateY(-100%);
    opacity: 0;
}


/* Animations */
.load-left-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleX(1);
    transform-origin: 0 0;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-left-mask::before{
    transform: scaleX(0);
}

.load-right-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleX(1);
    transform-origin: 100% 0;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-right-mask::before{
    transform: scaleX(0);
}

.load-up-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleY(1);
    transform-origin: 0 0;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-up-mask::before{
    transform: scaleY(0);
}

.load-down-mask::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleY(1);
    transform-origin: 0 100%;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.dom-is-loaded .load-down-mask::before{
    transform: scaleY(0);
}
.load-fade{
    opacity: 0;
}
.dom-is-loaded .load-fade{
    opacity: 1;
    transition: opacity 0.4s;
    transition-delay: 300ms;
}

.load-scale{
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s var(--cubic);
    transition-delay: 300ms;
}
.dom-is-loaded .load-scale{
    opacity: 1;
    transform: scale(1);
}

.load-title{
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s;
}
.dom-is-loaded .load-title{
    transform: translateY(0);
    opacity: 1;
}

.load-text{
    opacity: 0;
}
.dom-is-loaded .load-text{
    opacity: 1;
    transition: opacity 0.4s;
    transition-delay: 400ms;
}
.anim-fade{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s;
}
.is-active .anim-fade{
    opacity: 1;
    transform: translateY(0);
}

.anim-title{
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s;
}
.is-active .anim-title{
    opacity: 1;
    transform: translateY(0);
}

.regular-text{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s;
}
.is-active .regular-text{
    opacity: 1;
    transform: translateY(0);
}

.anim-move{
    opacity: 0;
    transform: translateX(50%);
    transition: all 0.4s;
}
.is-active .anim-move{
    opacity: 1;
    transform: translateY(0);
}

.anim-scale{
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s;
}
.is-active .anim-scale{
    opacity: 1;
    transform: scale(1);
}
.delayed{
    transition-delay: 200ms;
}
.delayed-2{
    transition-delay: 300ms;
}
.delayed-3{
    transition-delay: 400ms;
}
.delayed-4{
    transition-delay: 500ms;
}



.capsule-subtitle{
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s;
}
.is-active .capsule-subtitle{
    opacity: 1;
    transform: scale(1);
}

.anim-button{
    opacity: 0;
    transform: button(0.9);
    transition: all 0.4s;
}
.is-active .anim-button{
    opacity: 1;
    transform: scale(1);
}

.show-right::before{
    content: '';
    position: absolute;
    z-index:5;
    top:-2%;
    left:0;
    width: 100%;
    height: 104%;
    background-color:white;
    transform: scaleX(1);
    transform-origin: 100% 0;
    transition: transform 0.5s var(--cubic);
    transition-delay: 100ms;
}
.is-active .show-right::before{
    transform: scaleX(0);
}


.dom-is-loaded .internal-landing .capsule-subtitle{
    opacity: 1;
    transform: scale(1);
}

.internal-landing{
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transform-origin: 50%;
}




/* Mobile */


.mobile-menu{
    position: fixed;
    z-index: 19;
    display: block;
    top:0;
    right: 0;
    height: 100vh;
    width: 30vw;
    padding: 50px;
    transform: translateX(100%);
    pointer-events: none;
    transition: all 0.3s;
    /* display: none; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.open-menu .mobile-menu{
    transform: translateX(0);
    pointer-events: auto;
}
.truck{
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s;
    transform: translateX(100%);
     transition-delay: 400ms;
     pointer-events: none;
}
.open-menu .truck{
    transform: translateX(0);
}
.internal-nav li{
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(100px);
}
.open-menu .internal-nav li{
    transform: translateX(0);
    opacity: 1;
}
.internal-nav li a{
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    transform: translateX(0);
}
.internal-nav li:nth-child(1){
    transition-delay: 30ms;
}
.internal-nav li:nth-child(2){
    transition-delay: 60ms;
}
.internal-nav li:nth-child(3){
    transition-delay: 90ms;
}
.internal-nav li:nth-child(4){
    transition-delay: 120ms;
}
.internal-nav li:nth-child(5){
    transition-delay: 150ms;
}
.internal-nav li:nth-child(6){
    transition-delay: 180ms;
}
.internal-nav li:nth-child(7){
    transition-delay: 210ms;
}
.internal-nav li:nth-child(8){
    transition-delay: 240ms;
}
.internal-nav li:nth-child(9){
    transition-delay: 270ms;
}
.internal-nav li a:hover{
    transform: translateX(10px);
}


/* Toggle */
.nav-toggle{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    text-decoration: none !important;
    cursor: pointer;
    width: 80px;
    height: 60px;
    background-color: var(--orange);
    transition: all 0.3s;
    border-radius: 10px;
    z-index: 20;
    display: none;
    position: relative;
}
.nav-toggle:hover{
    background-color:var(--aqua);
}
.nav-toggle span {
    background-color: white;
    width: 40%;
    height: 2px;
    border-radius: 1px;
    display: block;
    position: absolute;
    left: 25px;
    content: '';
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.nav-toggle span:nth-child(1) {
    top: 22px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
.nav-toggle span:nth-child(2) {
    top: 29px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.nav-toggle span:nth-child(3) {
    top: 36px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}
.open-menu .nav-toggle span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 16px;
    left: 29px;
}
.open-menu .nav-toggle span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.open-menu .nav-toggle span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 39px;
    left: 28px;
}



/* Custom */
.large-section{
    position: relative;
}
.landing-glasses{
    position: absolute;
    top: 30vh;
    left: 0;
    width: 100vh;
    z-index: 1;
    opacity: 0;
}
.landing-glasses svg{
    width: 100vw;
}
.calculator-container{
    position: relative;
    z-index: 2;
    background-image: url(../images/mini-triangle.svg);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 10vw;
}
.first-title{
    opacity: 0;
    transform: translateY(30px);
}
.main-title .word{
    transform: translateY(30px);
    opacity: 0;
}
.main-title .word:nth-child(3){
    color: var(--aqua);
}
.main-text{
     transform: translateY(10px);
    opacity: 0;
}

.landing-section{
    position: relative;
    z-index: 2;
}
.about-section{
    position: relative;
    z-index: 2;
}
.deco-landing{
    margin-top: 2rem !important;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
}

.deco-landing .top-icon{
    position: absolute;
    top:-30px;
    left:-200px;
    margin-left: 30%;
    animation: 8s ease-in-out 0s infinite normal none running float;
    
}
@keyframes float {
  
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.value-box{
    padding: 30px;
}
.wp-block-cover .wp-block-cover__background{
    background-color: black;
}

.absolute-container{
    position: relative;
}
.absolute-img{
    position: absolute;

}
.img-1{
    bottom:5vh;
    left: 20%;
}
.img-2{
    bottom:5vh;
    left: -10%;
}
.img-3{
    bottom:5vh;
    right: 10%;
}
.benefit-line{
    margin-bottom: 5rem;
}

/* .last-benefit{
    background-image: url(../images/isotipo-naranja.svg);
    background-position: 136% 0;
    background-repeat: no-repeat;
    background-size: 50%;
} */
.last-benefit{
    position: relative;
}
.deco-orange-corner{
    position: absolute;
    top: 0;
    right: 10vw;
    width: 50vh;
    z-index: 1;
}
.deco-orange-corner svg{
    width: 50vw;
}
.calculator-container{
    position: relative;
    z-index: 2;
    background-image: url(../images/mini-triangle.svg);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 10vw;
}

/* Calculator */
.calculator-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator-card {
  width: 100%;
  /* max-width: 900px; */
}

.field-label {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.field-helper {
  font-size: 20px;
  margin: 0 0 14px;
  color: #111;
}

.field-input {
  width: 100%;
  height: 60px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 0 15px;
  font-size: 18px;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.field-input:focus {
  border-color: #ff8746;
  box-shadow: 0 0 0 4px rgba(255, 135, 70, 0.12);
}

.field-input::placeholder {
  color: #444;
}

.field-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #333 50%),
    linear-gradient(135deg, #333 50%, transparent 50%);
  background-position:
    calc(100% - 28px) calc(50% - 4px),
    calc(100% - 18px) calc(50% - 4px);
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
  cursor: pointer;
  box-sizing: border-box;
}

.field-error {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 15px;
  color: #d93025;
  font-weight: 600;
}

.calculate-btn {
  display: block;
  width: 390px;
  max-width: 100%;
  height: 40px;
  margin: 10px auto 0;
  border: none;
  border-radius: 40px;
  background: #ff8746;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.calculate-btn:hover {
  opacity: 0.95;
}

.calculate-btn:active {
  transform: scale(0.98);
}

.result-box {
  margin-top: 32px;
  background: #fff;
  border: 2px solid #e1e1e1;
  border-radius: 22px;
  padding: 24px 28px;
}

.result-payment {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
}

.result-rates {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.hidden {
  display: none;
}



/* Medios de pago */
.medios-container{
    background-image: url('../images/white-triangle.svg');
    background-position: 101% 100%;
    background-repeat: no-repeat;
    background-size: 10vw;
}
.medios-holder{
    margin-top: 5rem;
}


.footer-container{
    background-image: url('../images/footer-isotipo.svg');
    background-position: 50% -50%;
    background-repeat: no-repeat;
    background-size: 150vw;
}

.copy-on-click {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.copy-on-click:hover {
  opacity: 0.8;
}

.copy-on-click.copied {
  color: #ff8746;
}

.wp-block-navigation-item__content{
    position: relative;
    transition: all 0.3s;
}
.wp-block-navigation-item__content:hover{
    color: var(--orange) !important;
}
.wp-block-navigation-item__content::before{
    content:'';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--orange);
    top:8px;
    left:-10px;
    transition: all 0.3s;
    transform: scale(0);
    border-radius: 100%;
}
.wp-block-navigation-item__content:hover::before{
    transform: scale(1);
}
p a{
    text-decoration: none;
    transition: all 0.3s;
}
p a:hover{
    color: var(--orange) !important;
}


.whatsapp-link{
    position: fixed;
    top:90vh;
    right:30px;
}