/*==================================================
  COMO FUNCIONA - REPASSE BRASIL
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter,Arial,sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
        radial-gradient(circle at top,#12365d22,transparent 45%),
        linear-gradient(180deg,#07111c,#0d1724);
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.how-page{
    width:100%;
    min-height:100vh;
}

/* HEADER */

.how-header{
    width:100%;
    max-width:1380px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 25px;
}

.how-logo img{
    height:82px;
}

.how-header nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.how-header nav a{
    color:#d7dde8;
    font-weight:600;
    transition:.25s;
}

.how-header nav a:hover,
.how-header nav a.active{
    color:#22c55e;
}

.login-btn{
    background:#22c55e;
    color:#fff!important;
    padding:13px 26px;
    border-radius:12px;
}

/* HERO */

.how-hero{
    max-width:1380px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
    padding:55px 25px 90px;
}

.how-hero-content span{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    background:#16311d;
    color:#22c55e;
    font-weight:700;
    margin-bottom:22px;
}

.how-hero h1{
    font-size:52px;
    line-height:1.08;
    margin-bottom:24px;
}

.how-hero p{
    font-size:19px;
    color:#b8c3d4;
    line-height:1.75;
    max-width:650px;
}

.hero-actions{
    display:flex;
    gap:18px;
    margin-top:36px;
}

.primary-action{
    background:#22c55e;
    color:#fff;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
    transition:.25s;
}

.primary-action:hover{
    transform:translateY(-3px);
    background:#16a34a;
}

.secondary-action{
    border:2px solid rgba(255,255,255,.14);
    color:#fff;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
    transition:.25s;
}

.secondary-action:hover{
    background:#fff;
    color:#111827;
}

/* HERO CARD */

.hero-trust-card{
    background:#111d2b;
    border:1px solid rgba(255,255,255,.06);
    border-radius:28px;
    padding:48px;
    text-align:center;
    box-shadow:0 30px 60px rgba(0,0,0,.30);
}

.trust-icon-img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin:0 auto 22px;
}

.hero-trust-card strong{
    display:block;
    font-size:28px;
    margin-bottom:14px;
}

.hero-trust-card small{
    color:#b5c0d1;
    font-size:16px;
    line-height:1.7;
}

/* TÍTULOS */

.steps-section,
.benefits-section,
.faq-section{
    max-width:1380px;
    margin:auto;
    padding:75px 25px;
}

.section-label{
    color:#22c55e;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.steps-section h2,
.benefits-section h2,
.faq-section h2{
    font-size:42px;
    margin-top:16px;
    margin-bottom:50px;
}

/* PASSO A PASSO */

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

.step-card{
    background:#121d2b;
    border-radius:24px;
    padding:34px 28px;
    position:relative;
    border:1px solid rgba(255,255,255,.06);
    transition:.25s;
    min-height:285px;
}

.step-card:hover{
    transform:translateY(-6px);
    border-color:#22c55e;
}

.step-number{
    position:absolute;
    right:22px;
    top:22px;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.step-icon-img{
    width:58px;
    height:58px;
    object-fit:contain;
    margin-bottom:22px;
}

.step-card h3{
    font-size:22px;
    margin-bottom:14px;
}

.step-card p{
    color:#b8c3d4;
    line-height:1.75;
    font-size:15px;
}

/* BENEFÍCIOS */

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

.benefit-card{
    background:#121d2b;
    border-radius:26px;
    padding:36px;
    border:1px solid rgba(255,255,255,.06);
    transition:.25s;
}

.benefit-card:hover{
    transform:translateY(-6px);
    border-color:#22c55e;
}

.benefit-icon-img{
    width:58px;
    height:58px;
    object-fit:contain;
    margin-bottom:20px;
}

.benefit-card h3{
    font-size:25px;
    margin-bottom:8px;
}

.benefit-card strong{
    color:#22c55e;
    display:block;
    margin-bottom:22px;
}

.benefit-card ul{
    list-style:none;
}

.benefit-card li{
    margin-bottom:14px;
    color:#c4cedd;
    line-height:1.6;
    position:relative;
    padding-left:25px;
}

.benefit-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#22c55e;
    font-weight:bold;
}

.benefit-card a{
    display:inline-block;
    margin-top:24px;
    color:#22c55e;
    font-weight:800;
}

/* NÚMEROS */

.numbers-section{
    max-width:1380px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    padding:15px 25px 75px;
}

.numbers-section article{
    background:#121d2b;
    border-radius:22px;
    padding:36px 24px;
    text-align:center;
    border:1px solid rgba(255,255,255,.06);
}

.numbers-section strong{
    display:block;
    font-size:42px;
    color:#22c55e;
    margin-bottom:10px;
}

.numbers-section span{
    color:#b8c3d4;
    line-height:1.6;
}

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

.faq-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:24px;

}

.faq-grid article{

    background:#121d2b;

    border-radius:22px;

    padding:34px;

    border:1px solid rgba(255,255,255,.06);

    transition:.25s;

}

.faq-grid article:hover{

    border-color:#22c55e;

    transform:translateY(-5px);

}

.faq-grid h3{

    font-size:21px;

    margin-bottom:16px;

}

.faq-grid p{

    color:#b8c3d4;

    line-height:1.8;

    font-size:15px;

}

/*==================================================
 CTA
==================================================*/

.final-cta{

    max-width:1380px;

    margin:40px auto 90px;

    padding:55px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    );

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.final-cta h2{

    color:#fff;

    font-size:42px;

    margin-bottom:18px;

}

.final-cta p{

    color:#effff5;

    line-height:1.8;

    max-width:620px;

}

.cta-actions{

    display:flex;

    gap:18px;

}

.cta-actions a{

    white-space:nowrap;

}

/*==================================================
 HOVERS
==================================================*/

.step-card,
.benefit-card,
.numbers-section article,
.faq-grid article,
.hero-trust-card{

    transition:.30s;

}

.step-card:hover,
.benefit-card:hover,
.numbers-section article:hover,
.faq-grid article:hover,
.hero-trust-card:hover{

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

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

@media(max-width:1200px){

.how-header{

flex-direction:column;

gap:20px;

}

.how-header nav{

flex-wrap:wrap;

justify-content:center;

}

.how-hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-actions{

justify-content:center;

}

.hero-trust-card{

max-width:500px;

margin:auto;

}

.benefits-grid{

grid-template-columns:1fr;

}

.numbers-section{

grid-template-columns:repeat(2,1fr);

}

.faq-grid{

grid-template-columns:1fr;

}

.final-cta{

flex-direction:column;

text-align:center;

}

.cta-actions{

justify-content:center;

}

}

@media(max-width:768px){

.how-header{

padding:25px 20px;

}

.how-logo img{

height:60px;

}

.how-header nav{

display:none;

}

.how-hero{

padding:35px 20px 60px;

}

.how-hero h1{

font-size:36px;

}

.how-hero p{

font-size:16px;

}

.hero-actions{

flex-direction:column;

}

.primary-action,
.secondary-action{

text-align:center;

}

.steps-section,
.benefits-section,
.faq-section{

padding:60px 20px;

}

.steps-section h2,
.benefits-section h2,
.faq-section h2{

font-size:32px;

}

.steps-grid{

grid-template-columns:1fr;

}

.numbers-section{

padding:20px;

grid-template-columns:1fr;

}

.final-cta{

margin:30px 20px 60px;

padding:35px 25px;

}

.final-cta h2{

font-size:30px;

}

.final-cta p{

font-size:15px;

}

.cta-actions{

flex-direction:column;

width:100%;

}

.cta-actions a{

width:100%;

text-align:center;

}

}

/*==================================================
 SCROLLBAR
==================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#08111b;

}

::-webkit-scrollbar-thumb{

background:#22c55e;

border-radius:99px;

}

::-webkit-scrollbar-thumb:hover{

background:#16a34a;

}