
:root {
    --tone-color: #FF5E3E;
    --tone-dark: #B43F28;
    --tone-highlight: #FFE1DB;
   
    --white: #FFF;
    --dark: #262626;
    --grey: #969696;
    --success: #7EB76B;
    --error: #DC4646;
    
    --border-grey: #E4E4E4;
    --light-grey: #f8f8f8;
    --border-radius: 10px;
  
  }
  
*,
*::before,
*::after {
box-sizing: border-box;
}
[v-cloak]{display: none;}
html, body{
			overflow-x: hidden;

    margin: 0;
    font-family: 'Helvetica Neue LT Std', sans-serif;
    color: var(--dark);
    scroll-behavior: smooth;

}
body.lock-scroll {
    overflow: hidden;
}

/*---------------------------------*/
/*------------UTILITIES------------*/
/*---------------------------------*/
a{color: var(--tone-color);}
.tone{color: var(--tone-color);}
.tone-light{color: var(--tone-highlight);}
.secondary{color: var(--secondary);}
.white{color: white;}
.dark{color: var(--dark);}
.grey{color: var(--grey);}
.light-grey{color: var(--text-light);}
.success{color: var(--success);}
.error{color: var(--error);}

.bg-tone{
    background-color: var(--tone-color);
}

.italic{font-style: italic}
.uppercase{text-transform: uppercase}
.normal{font-weight: normal !important;}
.bold{font-weight: bold;}
.medium{font-weight: 600;}
.light{font-weight: 300;}
.fw800{font-weight: 800;}
.fw600{font-weight: 600;}

.fs10{font-size:10px !important;}
.fs14{font-size:14px !important;}
.fs12{font-size:12px !important;}
.fs16{font-size:16px !important;}
.fs18{font-size:18px !important;}
.fs20{font-size:20px !important;}
.fs24{font-size:24px !important;}
.fs26{font-size:26px !important;}
.fs28{font-size:28px !important;}
.fs36{font-size:36px !important;}
.fs48{font-size:48px !important;}
.fs64{font-size:64px !important;}
.fs100{font-size:100px !important;}

.pointer{
    cursor: pointer;
}
.grecaptcha-badge { 
    visibility: hidden;
}
/*------------STRUCTURES---------------*/
.row.large-gutter{
    --bs-gutter-x: 2.5rem;
}
.page-section{
    padding: 80px 0;c
}
.flex-between{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container-fluid{
    padding-left: 30px !important;
    padding-right: 30px !important;
}
@media (min-width: 1500px){
    .container-fluid{
        padding-left: 0px !important;
        padding-right: 50px !important;
        max-width: 1500px;
    }
}
@media (max-width: 768px){
    .center-mobile {
        text-align: center;
    }
  
}

/*------------BUTTONS AND LINKS---------------*/
a {text-decoration: none;}
a:hover {text-decoration: underline;}

.btn{
    font-family: 'Helvetica Neue LT Std', sans-serif;
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 16px;
	border: none !important;
}
.btn:disabled{
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}
.btn-lg{
    font-size: 18px;
    padding: 12px 20px;
}
.btn-xs{
    font-size: 16px;
    padding: 10px 15px;
}
.btn.btn-tone{
    background-color: var(--tone-color);
    border: solid 2px var(--tone-color);
    color: white;
}
.btn.btn-tone:hover{
    background-color: var(--tone-dark);
    border: solid 2px var(--tone-dark);
    color: white;
}
.btn.btn-outline{
    background-color: transparent;
}
.btn.btn-outline.btn-tone{
    background-color: transparent;
    color: white !important;
}
.btn.btn-outline.btn-tone:hover{
    background-color: var(--tone-color);
    border: solid 2px var(--tone-color);
    color: var(--white) !important;
}
.btn.btn-outline.btn-white{
    border: solid 2px var(--white);
    background-color: transparent;
    color: var(--white) !important;
}
.btn.btn-outline.btn-white:hover{
    background-color: var(--white);
    border: solid 2px var(--white);
    color: var(--tone-color) !important;
}
/*---------------------------------*/
/*------------WEB STYLES-----------*/
/*---------------------------------*/

/*------------NAV BAR---------------*/
.main-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 15px 0;
    background: white;
    width: 100%;
}
.main-nav .nav-brand img{
    height: 40px;
}
.main-nav .nav-items{
    display: flex;
    align-items: center;
    gap: 15px;
}
.main-nav .nav-link{
    color: var(--dark);
    font-size: 20px;
}
.main-nav .nav-link:hover{
    cursor: pointer;
    text-decoration: none;
    color: var(--tone-color)
}
footer{
    border-top: solid 1px #434343;
    background-color: var(--dark);
    padding: 60px 0;
}
footer a{
    color: white;
    font-size: 16px;
}
.selectable-item{
    padding: 4px 10px;
    border-radius: 4px;
    background-color: #554D4D;
    color: white;
    cursor: pointer;
}
.selectable-item:hover, .selectable-item.active{
    padding: 4px 10px;
    border-radius: 4px;
    background-color: var(--tone-color);
}
.banner-upgrade{
    background-color: var(--tone-color);
    color: white;
    transition: all 0.3s;
}
.banner-upgrade:hover{
    background-color: var(--tone-dark);
    color:  var(--tone-color);
}
.mobile-menu{
	transition: all 0.3s;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 65px;
	z-index: 10;
	left: 0;
	width: 100%;
	background-color: var(--tone-color);
}
.mobile-menu.active{
	pointer-events: all;
	opacity: 1;
}
.mobile-menu .mobile-menu-items{
	display: flex;
	flex-direction: column;
	padding: 25px;
}
.mobile-menu .mobile-menu-items .nav-link{
	font-size: 18px;
	color: white;
	font-weight: bold;
	gap: 8px;
}
@media (max-width: 992px){
	.main-nav .nav-brand img{
	    height: 30px;
	}
}

/*------------CALCULADOR---------------*/
.rn-slider{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background-color: var(--tone-highlight);
}
.rn-slider div{
    background-color: var(--tone-color);
    color: var(--white);
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: 600;
    text-align: center;
    min-width: 80px;
    min-height: 40px;
}

.calculator-hero h1{
	font-size: 64px;
	line-height: 70px;
	margin-bottom: 0 !important;
}
.calculator-hero h2{
	margin-top: 0 !important;
	font-size: 24px;
}
.calculator-hero{
	height: 450px;
	overflow: hidden;
}
.calculator-floating-button{
	display: none;
	position: fixed;
	bottom: 45px;
	z-index: 10;
	left: 25px;
}
.calculator-floating-button button{
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	padding: 15px 15px 12px 15px;
}

.mobile-adjustments-bar{
	padding: 25px;
	z-index: 9;
	position: fixed;
	width: 80%;
	top:0;
	right: -80%;
	height: 100%;
	transition: all 0.3s;
	background-color: white;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.mobile-adjustments-bar.active{
	right: 0;
}
@media (max-width: 992px){
    .calculator-hero h1{
		font-size: 30px;
		line-height: 40px;
	}
	.calculator-hero h2{
		font-size: 18px;
	}
	.calculator-hero{
		height: unset;
	}
	.calculator-hero img{
		display: none;
	}
	.adjustments.calculated{
		display: none;
	}
	.calculator-floating-button{
		display: block;
	}
	
}




/** ABOUT US**/

.about-hero h1{
	font-size: 30px;
	margin-bottom: 0 !important;
}
.about-hero h2{
	font-size: 20px;
	font-weight: 500;
}
.about-hero{
	height: 500px;
	overflow: hidden;
}
.about-hero .mockup{
	height: 100%;
    padding-top: 48px;
}
.about-hero .arrow{
	position: absolute;
	top: 20%;
	right: 8%;
	width: 80px;
}
.about-hero ul{
	list-style-image: url('https://protegiendoautonomos.com/files/pa-file-272');
}
.about-hero ul li{
	padding: 8px 0;
}

@media (max-width: 992px){
    .about-hero h1{
		font-size: 30px;
		line-height: 40px;
	}
	.about-hero h2{
		font-size: 18px;
	}
	.about-hero{
		padding: 50px 0;
		height: unset;
	}
}

.hiw-number{
	width: 60px;
	font-size: 120px;
	font-weight: bold;
	color: white;
 -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--tone-color);
}
.hiw-image{
	width: 100%;
	max-width: 350px;
}

.hiw-text-content{
	width: 400px;
	max-width: 100%;
}
.hiw-text-content h2{
	margin-bottom: 0px;
}
.hiw-text-content p{
	margin-top: 5px;
}

.title-decoration{
	width: 60px; position: absolute; top: -15px; right: -55px
}

.pa-card{
	border-radius: 8px;
	padding: 25px;
	min-height: 490px;
}
.pa-card.light{
	background-color: var(--tone-highlight);
}

@media (max-width: 992px){
    .hiw-image{
    	margin: auto;
		width: 100%;
		max-width: 250px;
	}
	#como-funciona .col-lg-5{
		text-align: center;
	}
	.title-decoration{
		width: 60px; 
		position: absolute; 
		top: -30px; 
		right: -20px
	}
}



/** BLOG**/
.blog-entry-card{
	border-radius: 8px;
	padding: 4px 8px;
	border: solid 1px white;
}
.blog-entry-card:hover{
	border: solid 1px var(--border-grey);
}





/**COOKIES AND AGE BANNERS**/
.cookies-banner{
	position: fixed;
	bottom: 25px;
	right: 0;
	left: 0;
	width: 100%;
	padding: 25px;
	border-radius: 10px;
	background-color: black;
	color: white;
	max-width: 90%;
	margin: auto;
	z-index: 9999;
}
@media (min-width: 575.98px) {
	.cookies-banner{
		width: 400px;
		left: unset;
		right: 25px;
		bottom: 25px;
	}
}



