/*==================================================
SOFILT
Landing Page Premium
==================================================*/


/*==================================================
FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:#f7fbfd;

    color:#17324d;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    max-width:100%;
    height:auto;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

button{

    background:none;

    border:none;

    cursor:pointer;

    font-family:inherit;

}

section{

    position:relative;

    padding:120px 0;

}


/*==================================================
ROOT
==================================================*/

:root{

    --primary:#0B5ED7;

    --primary-dark:#084298;

    --secondary:#31C6FF;

    --white:#FFFFFF;

    --light:#F7FBFD;

    --dark:#17324D;

    --text:#64748B;

    --border:rgba(11,94,215,.08);

    --glass:rgba(255,255,255,.72);

    --shadow:

        0 15px 35px rgba(13,45,70,.08);

    --shadow-hover:

        0 30px 70px rgba(13,45,70,.18);

    --radius:28px;

    --transition:.35s ease;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf6fc;

}

::-webkit-scrollbar-thumb{

    border-radius:30px;

    background:

    linear-gradient(

        var(--secondary),

        var(--primary)

    );

}


/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:white;

}


/*==================================================
BACKGROUND
==================================================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    radial-gradient(

        circle at top left,

        rgba(49,198,255,.12),

        transparent 35%

    ),

    radial-gradient(

        circle at bottom right,

        rgba(11,94,215,.10),

        transparent 30%

    );

    z-index:-3;

}

body::after{

    content:"";

    position:fixed;

    inset:0;

    backdrop-filter:blur(2px);

    z-index:-2;

}


/*==================================================
CONTAINER
==================================================*/

.container{

    width:min(1240px,92%);

    margin:auto;

}


/*==================================================
LOADER
==================================================*/

#loader{

    position:fixed;

    inset:0;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

#loader img{

    width:90px;

    animation:loaderFloat 2.4s ease-in-out infinite;

}

@keyframes loaderFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==================================================
PROGRESS BAR
==================================================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:

    linear-gradient(

        90deg,

        var(--secondary),

        var(--primary)

    );

    z-index:99999;

}


/*==================================================
HEADER
==================================================*/

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.35s;

}

#header.scrolled{

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

#header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:92px;

}


/*==================================================
LOGO
==================================================*/

.logo img{

    width:180px;

}


/*==================================================
MENU
==================================================*/

nav ul{

    display:flex;

    gap:45px;

}

nav a{

    position:relative;

    color:var(--dark);

    font-weight:500;

    transition:var(--transition);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

nav a:hover{

    color:var(--primary);

}

nav a:hover::after{

    width:100%;

}


/*==================================================
BOTÕES
==================================================*/

.btn-primary,
.btn-secondary,
.btn-whatsapp{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:16px 34px;

    border-radius:999px;

    font-size:.96rem;

    font-weight:600;

    position:relative;

    overflow:hidden;

    transition:var(--transition);

}

.btn-primary{

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    color:white;

    box-shadow:

    0 18px 35px rgba(11,94,215,.20);

}

.btn-secondary{

    background:white;

    color:var(--primary);

    border:2px solid rgba(11,94,215,.10);

}

.btn-whatsapp{

    background:#25D366;

    color:white;

    box-shadow:

    0 18px 35px rgba(37,211,102,.25);

}

.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover{

    transform:translateY(-5px);

}

.btn-primary::before,
.btn-secondary::before,
.btn-whatsapp::before{

    content:"";

    position:absolute;

    left:-120%;

    top:0;

    width:60%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transform:skewX(-25deg);

    transition:.8s;

}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-whatsapp:hover::before{

    left:150%;

}


/*==================================================
MENU MOBILE
==================================================*/

#menu-btn{

    display:none;

    font-size:34px;

    color:var(--primary);

}

/*==================================================
HERO
==================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding-top:90px;

}


/*==================================================
BACKGROUND
==================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        135deg,

        rgba(255,255,255,.96),

        rgba(245,251,255,.92)

    );

    z-index:1;

}

.water-effect{

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at center,

        rgba(49,198,255,.12),

        transparent 65%

    );

    animation:waterMove 15s linear infinite;

    z-index:2;

}

@keyframes waterMove{

    0%{

        transform:translate(-3%,-2%);

    }

    50%{

        transform:translate(3%,2%);

    }

    100%{

        transform:translate(-3%,-2%);

    }

}


/*==================================================
HERO CONTAINER
==================================================*/

.hero-container{

    position:relative;

    z-index:10;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:90px;

}


/*==================================================
TEXTOS
==================================================*/

.hero-text{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:max-content;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(11,94,215,.08);

    border:1px solid rgba(11,94,215,.12);

    color:var(--primary);

    font-size:.9rem;

    font-weight:600;

}

.hero h1{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.08;

    color:var(--dark);

    font-weight:800;

}

.hero p{

    font-size:1.08rem;

    color:var(--text);

    line-height:1.9;

    max-width:620px;

}


/*==================================================
BOTÕES
==================================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


/*==================================================
INFO
==================================================*/

.hero-info{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin-top:10px;

}

.hero-info div{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--dark);

    font-weight:600;

}

.hero-info i{

    color:#25D366;

    font-size:1.2rem;

}


/*==================================================
IMAGEM
==================================================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:5;

}

.hero-image img{

    width:100%;

    max-width:520px;

    position:relative;

    z-index:5;

    animation:heroFloat 5s ease-in-out infinite;

    filter:

    drop-shadow(

        0 35px 45px rgba(0,0,0,.18)

    );

}


/*==================================================
CIRCLE
==================================================*/

.circle{

    position:absolute;

    width:560px;

    height:560px;

    border-radius:50%;

    background:

    radial-gradient(

        circle,

        rgba(49,198,255,.35),

        rgba(11,94,215,.12),

        transparent 70%

    );

    filter:blur(20px);

    z-index:1;

    animation:circlePulse 8s infinite ease-in-out;

}

@keyframes circlePulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.06);

    }

    100%{

        transform:scale(1);

    }

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-16px);

    }

    100%{

        transform:translateY(0);

    }

}


/*==================================================
SCROLL DOWN
==================================================*/

.scroll-down{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:20;

}

.scroll-down span{

    display:block;

    width:30px;

    height:55px;

    border:2px solid rgba(11,94,215,.25);

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    width:6px;

    height:12px;

    border-radius:30px;

    background:var(--primary);

    animation:mouseScroll 1.7s infinite;

}

@keyframes mouseScroll{

    0%{

        top:10px;

        opacity:1;

    }

    100%{

        top:30px;

        opacity:0;

    }

}


/*==================================================
RESPONSIVO HERO
==================================================*/

@media(max-width:992px){

    .hero{

        min-height:auto;

        padding-top:130px;

        padding-bottom:80px;

    }

    .hero-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .hero-image{

        order:1;

    }

    .hero-text{

        order:2;

        align-items:center;

        text-align:center;

    }

    .hero p{

        max-width:700px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-info{

        justify-content:center;

    }

}

@media(max-width:768px){

    nav{

        display:none;

    }

    .btn-whatsapp{

        display:none;

    }

    #menu-btn{

        display:block;

    }

    .hero-image{

        width:100%;

    }

    .hero-image img{

        width:90%;

        max-width:320px;

    }

    .circle{

        width:320px;

        height:320px;

    }

    .hero-buttons{

        width:100%;

        flex-direction:column;

    }

    .hero-buttons a{

        width:100%;

    }

    .hero h1{

        font-size:2.4rem;

    }

    .hero-info{

        flex-direction:column;

        gap:15px;

    }

}

@media(max-width:480px){

    .hero{

        padding-top:120px;

    }

    .hero-image img{

        max-width:270px;

    }

    .hero h1{

        font-size:2rem;

    }

    .hero p{

        font-size:1rem;

    }

    .badge{

        font-size:.8rem;

        width:100%;

    }

}

/*==================================================
SECTION TITLE
==================================================*/

.section-title{

    max-width:780px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(11,94,215,.08);

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.82rem;

    font-weight:700;

    margin-bottom:20px;

}

.section-title h2{

    font-size:clamp(2.2rem,4vw,3.6rem);

    color:var(--dark);

    line-height:1.2;

    margin-bottom:20px;

}

.section-title p{

    color:var(--text);

    line-height:1.9;

    font-size:1.05rem;

}


/*==================================================
SERVICES
==================================================*/

.services{

    overflow:hidden;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-card{

    position:relative;

    overflow:hidden;

    padding:45px;

    border-radius:32px;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.7);

    box-shadow:var(--shadow);

    transition:.45s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        135deg,

        rgba(49,198,255,.08),

        transparent 60%

    );

    opacity:0;

    transition:.4s;

}

.service-card:hover::before{

    opacity:1;

}

.service-card>*{

    position:relative;

    z-index:2;

}

.filter-card{

    border-top:6px solid var(--primary);

}

.water-card{

    border-top:6px solid var(--secondary);

}


/*==================================================
ICONS
==================================================*/

.service-icon{

    width:84px;

    height:84px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    color:white;

    font-size:2rem;

    margin-bottom:28px;

    box-shadow:

    0 20px 35px rgba(11,94,215,.22);

}

.service-card h3{

    font-size:2rem;

    margin-bottom:18px;

    color:var(--dark);

}

.service-card p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:30px;

}

.service-card ul{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:35px;

}

.service-card li{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--dark);

    font-weight:500;

}

.service-card li i{

    color:#25D366;

}

.service-button{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 30px;

    border-radius:999px;

    background:#25D366;

    color:white;

    font-weight:600;

    transition:.35s;

}

.service-button:hover{

    transform:translateY(-4px);

}


/*==================================================
ADVANTAGES
==================================================*/

.advantages{

    background:

    linear-gradient(

        180deg,

        transparent,

        rgba(49,198,255,.04)

    );

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.advantage-card{

    background:white;

    padding:40px;

    border-radius:28px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.advantage-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.advantage-icon{

    width:82px;

    height:82px;

    border-radius:22px;

    margin:auto auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:2rem;

    color:white;

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

}

.advantage-card h3{

    margin-bottom:15px;

    color:var(--dark);

}

.advantage-card p{

    color:var(--text);

    line-height:1.8;

}


/*==================================================
STEPS
==================================================*/

.steps-grid{

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr;

    align-items:center;

    gap:20px;

}

.step{

    position:relative;

    background:white;

    border-radius:30px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.step:hover{

    transform:translateY(-8px);

}

.step-number{

    position:absolute;

    top:18px;

    right:20px;

    font-size:3rem;

    font-weight:800;

    color:rgba(11,94,215,.08);

}

.step i{

    width:82px;

    height:82px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    color:white;

    font-size:2rem;

}

.step h3{

    margin-bottom:15px;

}

.step p{

    color:var(--text);

    line-height:1.8;

}

.step-arrow{

    font-size:3rem;

    color:var(--secondary);

}


/*==================================================
CTA
==================================================*/

.cta{

    overflow:hidden;

}

.cta-box{

    position:relative;

    overflow:hidden;

    padding:90px 60px;

    border-radius:40px;

    text-align:center;

    color:white;

    background:

    linear-gradient(

        135deg,

        #0B5ED7,

        #1578ff,

        #31C6FF

    );

    box-shadow:

    0 35px 80px rgba(11,94,215,.28);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-250px;

    right:-180px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-box span{

    display:block;

    margin-bottom:20px;

    letter-spacing:2px;

    font-weight:600;

}

.cta-box h2{

    font-size:clamp(2.2rem,4vw,3.5rem);

    margin-bottom:20px;

}

.cta-box p{

    max-width:720px;

    margin:0 auto 40px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta .btn-primary{

    background:#25D366;

}

.cta .btn-secondary{

    background:white;

    color:var(--primary);

    border:none;

}

/*==================================================
FOOTER
==================================================*/

.footer{

    background:#10253d;

    color:#fff;

    position:relative;

    overflow:hidden;

    padding:90px 0 35px;

}

.footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at top right,

        rgba(49,198,255,.08),

        transparent 40%

    );

}

.footer-content{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

}

.footer-brand img{

    width:180px;

    margin-bottom:25px;

}

.footer-brand p{

    color:rgba(255,255,255,.72);

    line-height:1.9;

}

.footer h3{

    margin-bottom:22px;

    font-size:1.2rem;

}

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-contact a{

    display:flex;

    align-items:center;

    gap:10px;

    color:white;

    transition:.35s;

}

.footer-contact a:hover{

    color:var(--secondary);

}

.footer-services ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-services li{

    display:flex;

    align-items:center;

    gap:10px;

    color:rgba(255,255,255,.8);

}

.footer-services i{

    color:var(--secondary);

}

.footer-bottom{

    position:relative;

    z-index:2;

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:rgba(255,255,255,.65);

}


/*==================================================
WHATSAPP
==================================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:2rem;

    z-index:999;

    box-shadow:

        0 15px 35px rgba(37,211,102,.35);

    animation:whatsPulse 2s infinite;

}

@keyframes whatsPulse{

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}


/*==================================================
BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:28px;

    bottom:110px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:white;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.3rem;

    box-shadow:var(--shadow);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-5px);

}


/*==================================================
MENU MOBILE
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:340px;

    max-width:90%;

    height:100vh;

    background:white;

    display:flex;

    flex-direction:column;

    padding:40px;

    transition:.4s;

    z-index:99999;

    box-shadow:-20px 0 60px rgba(0,0,0,.12);

}

.mobile-menu.active{

    right:0;

}

.close-menu{

    align-self:flex-end;

    font-size:2rem;

    color:var(--primary);

    margin-bottom:40px;

}

.mobile-menu nav{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.mobile-menu nav a{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--dark);

    font-size:1.1rem;

    font-weight:600;

}

.mobile-button{

    margin-top:auto;

    padding:18px;

    border-radius:999px;

    background:#25D366;

    color:white;

    text-align:center;

    font-weight:600;

}

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}


/*==================================================
CURSOR
==================================================*/

.cursor-dot,
.cursor-outline{

    pointer-events:none;

    position:fixed;

    transform:translate(-50%,-50%);

    border-radius:50%;

    z-index:999999;

}

.cursor-dot{

    width:8px;

    height:8px;

    background:var(--primary);

}

.cursor-outline{

    width:34px;

    height:34px;

    border:2px solid rgba(11,94,215,.3);

    transition:.08s;

}


/*==================================================
PARTÍCULAS
==================================================*/

.particles{

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-1;

}

.particles span{

    position:absolute;

    width:8px;

    height:8px;

    border-radius:50%;

    background:rgba(49,198,255,.18);

    animation:particleFloat 18s linear infinite;

}

@keyframes particleFloat{

    from{

        transform:translateY(110vh);

    }

    to{

        transform:translateY(-15vh);

    }

}


/*==================================================
RESPONSIVIDADE
==================================================*/

@media(max-width:1100px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .advantages-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .steps-grid{

        grid-template-columns:1fr;

    }

    .step-arrow{

        display:none;

    }

    .footer-content{

        grid-template-columns:1fr;

        gap:40px;

    }

}

@media(max-width:768px){

    section{

        padding:90px 0;

    }

    .section-title{

        margin-bottom:50px;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .advantages-grid{

        grid-template-columns:1fr;

    }

    .cta-box{

        padding:50px 25px;

        border-radius:28px;

    }

    .cta-buttons{

        flex-direction:column;

        width:100%;

    }

    .cta-buttons a{

        width:100%;

    }

    .floating-whatsapp{

        width:60px;

        height:60px;

        right:18px;

        bottom:18px;

    }

    #backToTop{

        right:18px;

        bottom:90px;

    }

}

@media(max-width:576px){

    .footer{

        text-align:center;

    }

    .footer-contact{

        align-items:center;

    }

    .footer-services li{

        justify-content:center;

    }

    .service-card{

        padding:30px;

    }

    .advantage-card{

        padding:28px;

    }

    .step{

        padding:30px;

    }

}

@media(max-width:420px){

    .hero{

        padding-top:115px;

    }

    .hero h1{

        font-size:1.9rem;

    }

    .hero p{

        font-size:.96rem;

    }

    .hero-image img{

        max-width:260px;

    }

    .circle{

        width:260px;

        height:260px;

    }

}