:root{
    --green:#303817;
    --orange:#f57c00;
    --yellow:#ffc400;
    --bg:#f7f8f4;
    --dark:#111827;
    --muted:#6b7280;
    --white:#ffffff;
}

*{
    font-family:'Manrope',sans-serif;
}

body{
    background:var(--bg);
    color:var(--dark);
    overflow-x:hidden;
}

.navbar{
    padding:22px 0;
    background:rgba(247,248,244,.85);
    backdrop-filter:blur(18px);
}

.logo{
    height:90px;
}

.logo-white{
    height:120px;
}

.btn-main{
    background:linear-gradient(135deg,var(--orange),var(--yellow));
    color:#fff;
    border:0;
    border-radius:999px;
    padding:14px 28px;
    font-weight:800;
    box-shadow:0 15px 35px rgba(245,124,0,.28);
	transition: all 0.3s;
}

.btn-main:hover{
    color:#fff;
    transform:translateY(-2px);
	transition: all 0.3s;
}

.btn-outline-main{
    border:1px solid rgba(48,56,23,.25);
    border-radius:999px;
    padding:14px 28px;
    font-weight:700;
    color:var(--green);
    background:#fff;
	transition: all 0.3s;
}

.btn-outline-main:hover{
    background:#fff;
	border:1px solid rgba(48,56,23,.25);
    transform:translateY(-2px);
	transition: all 0.3s;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:110px;
}

.hero:before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,196,0,.25),transparent 70%);
    top:50px;
    right:-150px;
    z-index:-1;
}

.badge-soft{
    background:#fff;
    color:var(--green);
    border:1px solid rgba(48,56,23,.12);
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    display:inline-flex;
    gap:8px;
    align-items:center;
}

.hero h1{
    font-size:clamp(42px,7vw,82px);
    line-height:.95;
    font-weight:800;
    letter-spacing:-3px;
    color:var(--green);
}

.hero p{
    font-size:20px;
    color:var(--muted);
    max-width:590px;
}

.glass-card{
    background:rgba(255,255,255,.76);
    border:1px solid rgba(255,255,255,.8);
    border-radius:32px;
    box-shadow:0 35px 80px rgba(17,24,39,.08);
    backdrop-filter:blur(22px);
}

.energy-card{
    padding:30px;
}

.bill-box{
    background:var(--green);
    color:#fff;
    border-radius:28px;
    padding:32px;
    position:relative;
    overflow:hidden;
}

.bill-box:after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,196,0,.23);
    right:-50px;
    bottom:-50px;
}

.price-old{
    text-decoration:line-through;
    color:rgba(255,255,255,.75);
    font-size:28px;
}

.price-new{
    font-size:54px;
    font-weight:800;
    color:var(--yellow);
}

.stat-card{
    border-radius:26px;
    background:#fff;
    padding:28px;
    height:100%;
    box-shadow:0 20px 45px rgba(17,24,39,.06);
}

.stat-card i{
    width:52px;
    height:52px;
    background:rgba(245,124,0,.1);
    color:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:24px;
    margin-bottom:20px;
}

.section{
    padding:40px 0;
}

.section-title{
    font-size:clamp(34px,5vw,56px);
    font-weight:800;
    letter-spacing:-2px;
    color:var(--green);
}

.step{
    background:#fff;
    border-radius:30px;
    padding:34px;
    height:100%;
    border:1px solid rgba(48,56,23,.08);
    transition:.3s;
}

.step:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(17,24,39,.08);
}

.step-number{
    width:46px;
    height:46px;
    border-radius:50%;
    background:var(--yellow);
    color:var(--green);
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.orange{
    color: #FCB000;
}

.simulator{
    background:#fff;
	border: 1px solid #eaeaea;
    border-radius:8px;
    padding:30px;
    color:#333;
}

.img-responsive {
    width: 100%;
}

.form-control,
.form-select{
    border-radius:8px;
    padding:15px 18px;
    border:2px solid #eee;
}

.option-btn{
    background:#fff;
    border:2px solid transparent;
    border-radius:18px;
    padding:18px;
    font-weight:800;
    color:var(--green);
    cursor:pointer;
    width:100%;
    transition:.2s;
}

.option-btn.active{
    border-color:var(--yellow);
    background:#fff8dc;
}

.faq .accordion-item{
    border:0;
    border-radius:22px;
    overflow:hidden;
    margin-bottom:14px;
    box-shadow:0 15px 40px rgba(17,24,39,.05);
}

.faq .accordion-button{
    font-weight:800;
    padding:22px;
}

.footer{

    position:relative;

    overflow:hidden;

    padding:90px 0;

    color:#fff;

    background:url("../img/footer-bg.jpg") center center/cover no-repeat;

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(255,206,48,.82) 0%,
        rgba(255,170,0,.82) 35%,
        rgba(245,124,0,.82) 70%,
        rgba(233,120,0,.88) 100%
    );

    z-index:1;

}

.footer::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.18),
        transparent 60%
    );

    z-index:2;

}

.footer .container{

    position:relative;

    z-index:5;

}

@media(max-width:768px){
    .simulator{
        padding:30px 22px;
        border-radius:28px;
    }

    .hero{
        padding-top:130px;
    }

    .hero h1{
        letter-spacing:-2px;
    }

    .logo{
        height:42px;
    }
}

.nav-link {
    font-weight: 600;  
}

.slider-box{

background:#fff;

padding:25px;

border-radius:8px;

}

.slider-value{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    margin-bottom:25px;

}

.slider-value span{

    font-size:28px;
    font-weight:700;
    color:#243113;

}

.slider-value input{

    width:170px;

    border:none;
    border-bottom:2px solid #ff9800;

    text-align:center;

    font-size:48px;
    font-weight:800;

    color:#243113;

    background:transparent;

    outline:none;

}

.slider-value small{

    font-size:26px;
    color:#666;

}

.form-range{

height:8px;

}

.form-range::-webkit-slider-thumb{

width:22px;

height:22px;

background:linear-gradient(135deg,var(--orange),var(--yellow));

border:none;

box-shadow:0 8px 20px rgba(245,124,0,.4);

}

.slider-labels{

font-size:15px;

color:#555;

margin-top:20px;

}

.titular-box{

display:flex;

gap:15px;

margin-top:10px;

}

.radio-card{

flex:1;

cursor:pointer;

}

.radio-card input{

display:none;

}

.radio-card span{

display:block;

padding:15px;

background:#fff;

border-radius:8px;

text-align:center;

font-weight:700;

color: var(--green);

border:2px solid #eee;

transition:.25s;

}

.radio-card input:checked + span{

border-color:var(--yellow);

background:#fff8dd;

color:var(--green);

box-shadow:0 10px 25px rgba(255,196,0,.25);

}

.bg-green {
    background:var(--green);
	border-radius: 15px;
	padding: 30px;
}

.simulador-result{
    padding:25px;
}

.welcome{

    text-align:center;
    margin-bottom:25px;

}

.welcome h4{

    font-size:34px;
    font-weight:300;
    color:#1d1d1d;
    margin-bottom:5px;

}

.welcome h2{

    font-size:52px;
    font-weight:800;
    color:#1a1a1a;
    line-height:1.1;

}

.simulador-result hr{

    margin:35px 0;
    border:none;
    border-top:1px solid #ececec;

}

.economia-label{

    text-align:center;
    font-size:30px;
    color:#444;
    margin-bottom:30px;

}

.economia-label strong{

    color:#ff9800;

}

.economia-box{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    margin-bottom:45px;

}

.icone{

    width:90px;
    height:90px;
    border-radius:50%;
    background:linear-gradient(135deg,#ffd54f,#ffc107);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
    box-shadow:0 10px 25px rgba(255,193,7,.35);

}

.economia-box small{

    display:block;
    color:#888;
    font-size:18px;
    margin-bottom:6px;

}

#economia{

    font-size:60px;
    font-weight:800;
    color:#059212;
    margin:0;

}

.obs{

    display:block;
    text-align:center;
    margin-top:25px;
    font-size:16px;
    color:#777;
    line-height:1.7;

}

.obs b{

    color:#F67F00;

}

.resultado-box{
    position:relative;
    min-height:550px;
}

.preloader-box{

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,1);

    border-radius:0px;

    z-index:999;

    transition:.4s;
}

/********************/
/* LOADER */
/********************/

.loader-spinner{

    position:relative;
    width:80px;
    height:80px;

    animation:girar 1s linear infinite;

}

.loader-spinner span{

    position:absolute;

    width:16px;
    height:16px;

    border-radius:50%;

}

.loader-spinner span:nth-child(1){

    background:#282A05;
    top:0;
    left:32px;

}

.loader-spinner span:nth-child(2){

    background:#ff9800;
    right:0;
    top:32px;

}

.loader-spinner span:nth-child(3){

    background:#282A05;
    bottom:0;
    left:32px;

}

@keyframes girar{

from{
transform:rotate(0deg);
}

to{
transform:rotate(360deg);
}

}