/*====================================================

DARA NETWORK
Landing Premium

====================================================*/

:root{

    --primary:#F59E0B;
    --secondary:#FF6B00;

    --dark:#080A0F;
    --dark2:#12141B;

    --white:#ffffff;

    --gray:#A6ACB8;

    --border:rgba(255,255,255,.08);

    --glass:rgba(255,255,255,.06);

    --glass2:rgba(255,255,255,.12);

    --shadow:
        0 30px 60px rgba(0,0,0,.35);

    --transition:.35s;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--dark);

    color:white;

    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

/*========================================

SCROLLBAR

========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        var(--primary),
        var(--secondary)
    );

    border-radius:50px;

}

/*========================================

HEADER

========================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

}

.header.active{

    background:rgba(8,10,15,.95);

    backdrop-filter:blur(18px);

    box-shadow:0 5px 30px rgba(0,0,0,.35);

}

.navbar{

    padding:22px 0;

}

.logo{

    height:60px;

}

.nav-link{

    color:white;

    font-weight:500;

    margin-left:25px;

    transition:.3s;

}

.nav-link:hover{

    color:var(--primary);

}

.btn-warning{

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--secondary));

    border:none;

    color:white;

    font-weight:700;

    padding:14px 34px;

    transition:var(--transition);

}

.btn-warning:hover{

    transform:translateY(-4px);

    box-shadow:

        0 20px 45px rgba(245,158,11,.35);

}

/*========================================

HERO

========================================*/

.hero{

    min-height:120vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:

    radial-gradient(circle at top left,
    rgba(255,150,0,.15),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(0,160,255,.08),
    transparent 30%),

    linear-gradient(
    180deg,
    #0A0B11,
    #08090F);

}

/*========================================

GRID

========================================*/

.hero::before{

content:"";

position:absolute;

right:5%;

top:50%;

width:700px;

height:700px;

background:

radial-gradient(

rgba(255,125,0,.18),

transparent 70%

);

transform:translateY(-50%);

filter:blur(20px);

}

/*========================================

GLOW

========================================*/

.hero::after{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    background:

    radial-gradient(circle,

    rgba(255,150,0,.22),

    transparent 70%);

    right:-250px;

    top:-120px;

    filter:blur(80px);

}

/*========================================

TEXT

========================================*/

.badge-top{

    display:inline-block;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    padding:10px 18px;

    border-radius:50px;

    font-size:13px;

    letter-spacing:1px;

    margin-bottom:25px;
    margin-top: 120px;

}

.dara-ecosystem{

position:relative;

width:650px;

height:650px;

display:flex;

align-items:center;

justify-content:center;

}


/* =====================
CORE
===================== */


.dara-core{

position:absolute;

width:190px;

height:190px;

border-radius:50%;

background:

linear-gradient(
145deg,
#ff9d00,
#ff5a00
);

display:flex;

align-items:center;

justify-content:center;

z-index:5;

box-shadow:

0 0 80px rgba(255,130,0,.6);

animation:pulse 3s infinite;

}


.core-content{

text-align:center;

color:white;

display:flex;

flex-direction:column;

align-items:center;

}


.core-content img{

width:80px;

margin-bottom:10px;

}


.core-content strong{

font-size:13px;

letter-spacing:2px;

}


.core-content span{

font-size:22px;

font-weight:900;

}



@keyframes pulse{


0%{

transform:scale(1);

}


50%{

transform:scale(1.08);

}


100%{

transform:scale(1);

}


}




/* =====================
CARDS
===================== */


.ecosystem-card{

position:absolute;

width:150px;
height: 150px;

padding:22px;

border-radius:22px;

background:

rgba(255,255,255,.08);


border:

1px solid rgba(255,255,255,.15);


backdrop-filter:blur(15px);


color:white;

text-align:center;


box-shadow:

0 20px 50px rgba(0,0,0,.35);


z-index:3;


animation:float 5s infinite ease-in-out;

}



.ecosystem-card i{

font-size:22px;

display:block;

font-style:normal;

margin-bottom:8px;

}


.ecosystem-card strong{

display:block;

font-size:14px;

}


.ecosystem-card small{

color:#cbd5e1;

}



@keyframes float{


0%,
100%{

transform:translateY(0);

}


50%{

transform:translateY(-15px);

}


}



/* posições */


.card-top{

top:20px;

}


.card-right{

right:10px;

top:230px;

}


.card-bottom{

bottom:20px;

}


.card-left{

left:10px;

top:230px;

}



.card-extra1{

right:70px;

top:80px;

transform:scale(.8);

}


.card-extra2{

left:70px;

bottom:80px;

transform:scale(.8);

}



/* =====================
CONEXÕES
===================== */


.connection{

position:absolute;

height:2px;

background:

linear-gradient(
90deg,
transparent,
#ff9500,
transparent
);


opacity:.6;

animation:energy 3s infinite;

}


.connection-1{

width:250px;

transform:rotate(-35deg);

}


.connection-2{

width:250px;

transform:rotate(35deg);

}


.connection-3{

width:240px;

transform:rotate(90deg);

}


.connection-4{

width:300px;

transform:rotate(0deg);

}


.connection-5{

width:200px;

transform:rotate(145deg);

}


.connection-6{

width:200px;

transform:rotate(-145deg);

}



@keyframes energy{


0%{

opacity:.2;

}


50%{

opacity:1;

}


100%{

opacity:.2;

}

}

.ecosystem-card i{
    font-size:32px;
    color:#22d3ee;
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    border-radius:18px;
    background:rgba(34,211,238,.12);
    border:1px solid rgba(34,211,238,.25);
    margin:0 auto 18px;
    transition:.35s;
}

.ecosystem-card:hover i{
    transform:scale(1.12) rotate(8deg);
    background:#22d3ee;
    color:#08111f;
    box-shadow:0 0 25px rgba(34,211,238,.45);
}

.hero h1{

    font-size:38px;

    line-height:1.05;

    font-weight:900;

    max-width:720px;

    margin-bottom:25px;

}

.hero p{

    color:var(--gray);

    font-size:15px;

    line-height:1.8;

    max-width:620px;

}
.hero-title{

    font-size:clamp(54px,6vw,88px);

    line-height:.95;

    max-width:700px;

    font-weight:900;

    letter-spacing:-3px;

}

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

}

.btn-outline-light{

    border:1px solid rgba(255,255,255,.15);

    color:white;

    padding:14px 34px;

    border-radius:50px;

}

.btn-outline-light:hover{

    background:white;

    color:black;

}

/*========================================

TRUST

========================================*/

.hero-security{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    margin-top:40px;

}

.hero-security div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#BFC6D4;

}

.hero-security i{

    color:var(--primary);

}

/*========================================

NOTEBOOK

========================================*/

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    width:95%;

    animation:float 5s infinite ease-in-out;

    filter:

        drop-shadow(0 50px 60px rgba(0,0,0,.55));

}

/*========================================

FLOAT CARDS

========================================*/

.floating-card{

    position:absolute;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:20px;

    padding:18px;

    width:210px;

    box-shadow:var(--shadow);

}

.floating-card h5{

    font-size:20px;

    margin-bottom:5px;

}

.floating-card span{

    color:#CDD3DE;

    font-size:14px;

}

.card-1{

    left:-20px;

    top:50px;

}

.card-2{

    right:-20px;

    top:180px;

}

.card-3{

    left:30px;

    bottom:40px;

}



/*========================================

ANIMATION

========================================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

/*========================================

RESPONSIVE

========================================*/

@media(max-width:991px){

.hero{

padding:150px 0 80px;

text-align:center;

}

.hero h1{

font-size:48px;

}

.hero p{

margin:auto;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero-security{

justify-content:center;

}

.hero-image{

margin-top:60px;

}

.floating-card{

display:none;

}

.stats{

margin-top:0;

padding:60px 0;

}

}

/*====================================================

WHY DARA

====================================================*/

.why-dara{

    background:#F8FAFC;

    padding:120px 0;

}

.section-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:40px;

    background:#FFF3E8;

    color:#FF6B00;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

.section-title{

    font-size:48px;

    font-weight:900;

    color:#101828;

    margin-bottom:20px;

}

.section-text{

    color:#667085;

    font-size:20px;

    line-height:1.8;

}

/*====================*/

.benefit-card{

    background:white;

    border-radius:24px;

    padding:45px 30px;

    transition:.4s;

    height:100%;

    border:1px solid #EEF2F7;

}

.benefit-card:hover{

    transform:translateY(-12px);

    box-shadow:

        0 25px 60px rgba(0,0,0,.08);

}

.icon-box{

    width:80px;

    height:80px;

    border-radius:24px;

    background:

    linear-gradient(

    135deg,

    #F59E0B,

    #FF6B00);

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:34px;

    margin-bottom:25px;

}

.benefit-card h4{

    color:#111827;

    font-size:26px;

    font-weight:800;

    margin-bottom:18px;

}

.benefit-card p{

    color:#667085;

    line-height:1.8;

}

/*====================================================

NUMBERS

====================================================*/

.numbers{

    background:white;

    padding:90px 0;

}

.number-item h2{

    font-size:70px;

    font-weight:900;

    background:linear-gradient(

    90deg,

    #F59E0B,

    #FF6B00);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.number-item span{

    color:#667085;

    font-size:20px;

}


/*==========================================

HOW IT WORKS

==========================================*/

.how-it-works{

    background:#F8FAFC;

    padding:130px 0;

}

.timeline{

    position:relative;

}

.timeline::before{

    content:"";

    position:absolute;

    left:26px;

    top:0;

    bottom:0;

    width:2px;

    background:#E5E7EB;

}

.timeline-item{

    display:flex;

    gap:25px;

    margin-bottom:45px;

    position:relative;

}

.timeline-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    #F59E0B,
    #FF6B00);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    z-index:2;

    flex-shrink:0;

}

.timeline-item h4{

    font-size:24px;

    color:#111827;

    margin-bottom:8px;

}

.timeline-item p{

    color:#667085;

    line-height:1.7;

}

/*==========================================

DEVICE

==========================================*/

.device-wrapper{

    position:relative;

    text-align:center;

}

.device-wrapper img{

    width:100%;

    filter:

        drop-shadow(
            0 40px 60px rgba(0,0,0,.20));

}

.mini-card{

    position:absolute;

    background:white;

    border-radius:18px;

    padding:16px 22px;
    color: #08090F;

    box-shadow:

        0 20px 40px rgba(0,0,0,.10);

    font-weight:600;

}

.mini-card i{

    color:#F59E0B;

    margin-right:8px;

}

.mini-card-1{

    top:30px;

    left:-10px;

}

.mini-card-2{

    top:120px;

    right:-20px;

}

.mini-card-3{

    bottom:110px;

    left:-20px;

}

.mini-card-4{

    bottom:20px;

    right:0;

}

/*==========================================

CTA

==========================================*/

.cta-middle{

    padding:100px 0;

    background:white;

}

.cta-box{

    border-radius:35px;

    padding:80px;

    text-align:center;

    background:

        linear-gradient(
        135deg,
        #111827,
        #1F2937);

    color:white;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    background:

        radial-gradient(
        rgba(245,158,11,.35),
        transparent);

    top:-150px;

    right:-120px;

}

.cta-box h2{

    font-size:54px;

    font-weight:900;

    margin-bottom:20px;

}

.cta-box p{

    color:#CBD5E1;

    font-size:20px;

    margin-bottom:35px;

}

/*========================================

EARNING

========================================*/

.earn-section{

padding:140px 0;

background:#fff;

}

.earning-flow{

margin-top:80px;

display:flex;

align-items:center;

justify-content:center;

gap:25px;

flex-wrap:wrap;

}

.flow-card{

width:200px;

padding:35px;

border-radius:28px;

background:#F8FAFC;

text-align:center;

transition:.4s;

border:1px solid #EDF2F7;

}

.flow-card:hover{

transform:translateY(-12px);

box-shadow:

0 25px 60px rgba(0,0,0,.08);

}

.flow-icon{

width:80px;

height:80px;

margin:auto;

margin-bottom:20px;

border-radius:24px;

display:flex;

align-items:center;

justify-content:center;

background:

linear-gradient(135deg,#F59E0B,#FF6B00);

color:white;

font-size:32px;

}

.flow-card h4{

font-size:20px;

font-weight:800;

margin-bottom:15px;

color:#111827;

}

.flow-card p{

color:#667085;

line-height:1.7;

}

.flow-arrow{

font-size:40px;

color:#F59E0B;

}

/*========================================

INCOME

========================================*/

.income-types{

padding:120px 0;

background:#F8FAFC;

}

.income-card{

height:100%;

background:white;

padding:45px;

border-radius:28px;

transition:.4s;

border:1px solid #EEF2F7;

}

.income-card:hover{

transform:translateY(-10px);

box-shadow:

0 20px 60px rgba(0,0,0,.08);

}

.income-icon{

width:70px;

height:70px;

border-radius:22px;

background:

linear-gradient(135deg,#F59E0B,#FF6B00);

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:white;

margin-bottom:25px;

}

.income-card h3{

font-size:28px;

font-weight:800;

margin-bottom:18px;

color:#111827;

}

.income-card p{

font-size:17px;

line-height:1.8;

color:#667085;

}


/*==================================

SOCIAL PROOF

==================================*/

.social-proof{

padding:140px 0;

background:white;

}

.proof-card{

height:100%;

padding:45px;

background:#F8FAFC;

border-radius:28px;

transition:.35s;

border:1px solid #EEF2F7;

text-align:center;

}

.proof-card:hover{

transform:translateY(-10px);

box-shadow:

0 20px 60px rgba(0,0,0,.08);

}

.proof-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

border-radius:25px;

background:linear-gradient(135deg,#F59E0B,#FF6B00);

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:38px;

}

.proof-card h4{

font-size:28px;

font-weight:800;

margin-bottom:15px;

color:#111827;

}

.proof-card p{

line-height:1.8;

color:#667085;

}

/*==================================

TESTIMONIALS

==================================*/

.testimonials{

padding:120px 0;

background:#F8FAFC;

}

.testimonial-box{

max-width:900px;

margin:auto;

padding:70px;

background:white;

border-radius:35px;

box-shadow:

0 20px 60px rgba(0,0,0,.08);

text-align:center;

}

.stars{

font-size:30px;

color:#F59E0B;

margin-bottom:25px;

}

.testimonial-box p{

font-size:24px;

line-height:1.8;

font-style:italic;

color:#374151;

}

.testimonial-box h5{

margin-top:35px;

font-size:24px;

font-weight:800;

}

.testimonial-box span{

color:#94A3B8;

}


.text-white{
    color: #fff !important;
}

/*==================================

CTA FINAL

==================================*/

.cta-premium{

padding:120px 0;

background:white;

}

.premium-box{

padding:90px;

border-radius:35px;

text-align:center;

background:linear-gradient(
135deg,
#111827,
#0F172A);

color:white;

overflow:hidden;

position:relative;

}

.premium-box::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:

radial-gradient(
rgba(245,158,11,.30),
transparent);

top:-180px;

right:-150px;

}

.premium-box h2{

font-size:58px;

font-weight:900;

margin-bottom:20px;

}

.premium-box p{

font-size:22px;

color:#CBD5E1;

margin-bottom:40px;

}


.footer{

    background:#080A0F;

    color:#CBD5E1;

    padding:90px 0 40px;

}

.footer-logo{

    height:65px;

}

.footer-description{

    line-height:1.9;

    color:#94A3B8;

}

.footer h5{

    color:white;

    font-weight:700;

    margin-bottom:25px;

}

.footer-list,
.footer-links{

    list-style:none;

    padding:0;

}

.footer-list li,
.footer-links li{

    margin-bottom:14px;

}

.footer-list i{

    color:#F59E0B;

    margin-right:10px;

}

.footer-links a{

    color:#94A3B8;

    transition:.3s;

}

.footer-links a:hover{

    color:#F59E0B;

    padding-left:5px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social-icons a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#151922;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.3s;

}

.social-icons a:hover{

    background:#F59E0B;

    transform:translateY(-4px);

}

.newsletter label{

    color:white;

    font-weight:600;

}

.security-icons{

    display:flex;

    gap:30px;

    flex-wrap:wrap;

}

.security-icons div{

    display:flex;

    align-items:center;

    gap:10px;

}

.security-icons i{

    color:#F59E0B;

    font-size:22px;

}

/*=====================================
WHATSAPP FLOAT
======================================*/

.whatsapp-float{

    position:fixed;

    right:28px;
    bottom:28px;

    width:68px;
    height:68px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:linear-gradient(180deg,#25D366,#12b14e);

    color:#fff;

    font-size:34px;

    box-shadow:
    0 12px 35px rgba(37,211,102,.35);

    z-index:99999;

    transition:.35s;

    overflow:visible;

}

.whatsapp-float:hover{

    transform:translateY(-6px) scale(1.08);

    color:#fff;

    box-shadow:
    0 18px 45px rgba(37,211,102,.55);

}

/* brilho */

.whatsapp-float::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:

    radial-gradient(circle at 30% 30%,
    rgba(255,255,255,.35),
    transparent 55%);

}

/* ondas */

.whatsapp-pulse{

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    background:#25D366;

    z-index:-1;

    animation:whatsPulse 2s infinite;

}

.whatsapp-pulse::before,
.whatsapp-pulse::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:50%;

    background:#25D366;

    animation:whatsPulse 2s infinite;

}

.whatsapp-pulse::before{

    animation-delay:.5s;

}

.whatsapp-pulse::after{

    animation-delay:1s;

}

@keyframes whatsPulse{

    0%{

        transform:scale(1);

        opacity:.45;

    }

    70%{

        transform:scale(1.8);

        opacity:0;

    }

    100%{

        transform:scale(1.8);

        opacity:0;

    }

}

/* leve flutuação */

.whatsapp-float{

    animation:floatWhatsapp 3.5s ease-in-out infinite;

}

@keyframes floatWhatsapp{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-6px);

    }

    100%{

        transform:translateY(0);

    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:60px;
        height:60px;

        right:18px;
        bottom:18px;

        font-size:30px;

    }

}