/* ==========================
   RESET
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#f6f7fb;
color:#111;
line-height:1.6;
overflow-x:hidden;
}

/* ==========================
CONTAINER
========================== */

.container{
width:100%;
max-width:1350px;
margin:auto;
padding:0 40px;
}

/* ==========================
HEADER
========================== */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:#fff;
border-bottom:1px solid #ececec;
z-index:999;
}

header .container{
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:34px;
font-weight:800;
text-decoration:none;
color:#111;
}

.logo span{
color:#f6b400;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
font-weight:600;
color:#555;
transition:.3s;
}

nav a:hover{
color:#111;
}

/* ==========================
HERO
========================== */

.hero{
padding:170px 0 90px;
background:#fff;
}

.hero-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:100px;
align-items:center;
}

.badge{
display:inline-flex;
padding:8px 18px;
border-radius:50px;
background:#fff8dd;
color:#111;
font-size:14px;
font-weight:700;
margin-bottom:25px;
}

.hero h1{
font-size:72px;
line-height:1;
font-weight:800;
}

.hero p{
font-size:20px;
color:#666;
max-width:560px;
margin-bottom:35px;
}

.hero button{
background:#111;
color:#fff;
border:none;
padding:18px 40px;
border-radius:12px;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.hero button:hover{
background:#f6b400;
color:#111;
transform:translateY(-3px);
}

.hero ul{
margin-top:40px;
display:grid;
gap:14px;
}

.hero ul li{
list-style:none;
font-size:18px;
font-weight:600;
color:#444;
}

.hero-right{
display:flex;
justify-content:center;
}

.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-right img{
    width:100%;
    max-width:620px;
    height:auto;
    animation:float 5s ease-in-out infinite;
}
@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/* ==========================
QUOTE
========================== */

#quote{
padding:90px 0;
}

.progressBox{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.05);
margin-bottom:40px;
}

.progressText{
display:flex;
justify-content:space-between;
margin-bottom:14px;
font-weight:700;
}

.progress{
height:8px;
background:#ececec;
border-radius:100px;
overflow:hidden;
}

.progressFill{
width:11%;
height:100%;
background:#f6b400;
transition:.4s;
}

.step{
display:none;
background:#fff;
padding:45px;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.step.active{
display:block;
animation:fade .35s;
}

@keyframes fade{

from{
opacity:0;
transform:translateY(15px);
}

to{
opacity:1;
transform:none;
}

}

.step h2{
font-size:36px;
margin-bottom:10px;
}

.step p{
color:#666;
margin-bottom:25px;
font-size:18px;
}

#search{
width:100%;
height:60px;
border:2px solid #e5e5e5;
border-radius:12px;
padding:0 20px;
font-size:18px;
margin-bottom:30px;
outline:none;
}

#search:focus{
border-color:#f6b400;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
}

.option{
background:#fff;
border:2px solid #ececec;
border-radius:14px;
padding:22px;
font-size:17px;
font-weight:700;
cursor:pointer;
transition:.25s;
}

.option:hover{
border-color:#f6b400;
background:#fffdf3;
transform:translateY(-3px);
}

.option.selected{
background:#111;
border-color:#111;
color:#fff;
}

.input-group{
margin-bottom:24px;
}

.input-group label{
display:block;
font-weight:700;
margin-bottom:8px;
}

.input-group input{
width:100%;
height:60px;
border:2px solid #ececec;
border-radius:12px;
padding:0 18px;
font-size:17px;
}

.buttons{
display:flex;
justify-content:space-between;
margin-top:35px;
gap:15px;
}

.buttons button{
flex:1;
height:58px;
border:none;
border-radius:12px;
font-size:17px;
font-weight:700;
cursor:pointer;
}

#backButton{
background:#ececec;
}

#finishButton{
background:#111;
color:#fff;
}

#finishButton:hover{
background:#f6b400;
color:#111;
}
/* ==========================
LOADING
========================== */

#loading{
display:none;
padding:100px 0;
}

.loading-box{
max-width:600px;
margin:auto;
background:#fff;
border-radius:20px;
padding:60px;
text-align:center;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.spinner{
width:70px;
height:70px;
border:6px solid #ececec;
border-top:6px solid #f6b400;
border-radius:50%;
margin:auto;
animation:spin 1s linear infinite;
margin-bottom:30px;
}

@keyframes spin{

100%{
transform:rotate(360deg);
}

}

.loading-box h2{
font-size:34px;
margin-bottom:15px;
}

.loading-box p{
font-size:18px;
color:#666;
}

/* ==========================
SUCCESS
========================== */

#success{
display:none;
padding:100px 0;
}

.success-card{
max-width:700px;
margin:auto;
background:#fff;
padding:70px;
border-radius:24px;
text-align:center;
box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.success-icon{
width:100px;
height:100px;
background:#28c76f;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:48px;
font-weight:700;
border-radius:50%;
margin:auto;
margin-bottom:30px;
}

.success-card h2{
font-size:38px;
margin-bottom:20px;
}

.success-card p{
font-size:18px;
color:#666;
margin-bottom:35px;
line-height:1.8;
}

.success-card a{
display:inline-flex;
align-items:center;
justify-content:center;
padding:18px 35px;
background:#111;
color:#fff;
text-decoration:none;
font-weight:700;
border-radius:12px;
transition:.3s;
}

.success-card a:hover{
background:#f6b400;
color:#111;
}

/* ==========================
SECTION TITLE
========================== */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
display:inline-block;
padding:8px 18px;
background:#fff8dd;
border-radius:40px;
font-weight:700;
margin-bottom:18px;
}

.section-title h2{
font-size:44px;
margin-bottom:15px;
}

.section-title p{
font-size:18px;
color:#666;
}

/* ==========================
CARDS INFO
========================== */

.cards-info{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.info-card{
background:#fff;
padding:40px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.05);
transition:.3s;
}

.info-card:hover{
transform:translateY(-8px);
}

.number{
width:70px;
height:70px;
background:#111;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:800;
margin:auto;
margin-bottom:25px;
}

.info-card h3{
font-size:24px;
margin-bottom:12px;
}

.info-card p{
color:#666;
}

/* ==========================
ADVANTAGES
========================== */

.advantages{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.advantages div{
background:#fff;
padding:30px;
border-radius:18px;
font-weight:700;
box-shadow:0 15px 40px rgba(0,0,0,.05);
transition:.3s;
}

.advantages div:hover{
transform:translateY(-5px);
}

/* ==========================
REVIEWS
========================== */

.reviews{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.review{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.05);
font-size:20px;
}

.review p{
margin:20px 0;
color:#555;
line-height:1.7;
}

.review strong{
display:block;
margin-top:10px;
}

/* ==========================
FAQ
========================== */

.faq{
display:grid;
gap:20px;
}

.faq-item{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.faq-item h3{
font-size:22px;
margin-bottom:12px;
}

.faq-item p{
color:#666;
line-height:1.8;
}

/* ==========================
FOOTER
========================== */

footer{
background:#111;
color:#fff;
margin-top:100px;
}

.footer{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
padding:80px 0;
}

.footer h3{
font-size:34px;
margin-bottom:20px;
}

.footer h4{
margin-bottom:18px;
}

.footer p{
color:#bdbdbd;
margin-bottom:10px;
}

.copy{
border-top:1px solid rgba(255,255,255,.08);
padding:25px;
text-align:center;
color:#bdbdbd;
}

/* ==========================
RESPONSIVO
========================== */

@media(max-width:992px){

.hero-container{
grid-template-columns:1fr;
text-align:center;
}

.hero h1{
font-size:42px;
}

.hero ul{
justify-content:center;
}

.cards-info,
.advantages,
.reviews,
.footer{
grid-template-columns:1fr;
}

nav{
display:none;
}

.hero-right img{
width:300px;
}

.section-title h2{
font-size:34px;
}

.step{
padding:30px;
}

.step h2{
font-size:28px;
}

.grid{
grid-template-columns:1fr;
}

.buttons{
flex-direction:column;
}

.success-card{
padding:40px 25px;
}

.loading-box{
padding:40px 25px;
}
.erro{
    display:block;
    color:#e53935;
    font-size:14px;
    margin-top:6px;
    font-weight:600;
}

.input-error{
    border:2px solid #e53935 !important;
}

.input-ok{
    border:2px solid #28a745 !important;
}
}
