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

body{
    font-family:'Poppins', sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;
}

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

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
   padding:3px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(0,0,0,0.82);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

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

.logo img{
    width:105px;/* ============= TAMANHO DO LOGO ============== */
    height:auto;
    object-fit:contain;
    transition:0.3s;
}
    
    
    
/* MENU MOBILE */

.menu-toggle{
    display:flex;
}

nav a{
    color:#00ffb3;
    text-decoration:none;
    margin-left:28px;
    transition:0.3s;
    font-size:15px;
    font-weight:500;
}

nav a:hover{
    color:#fff;
}
/* ================= HERO ================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:160px 7% 80px;
    gap:60px;

    background:
    linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.hero-text{
    flex:1;
}

.hero-text span{
    color:#00ffb3;
    font-weight:600;
    letter-spacing:2px;
}

.hero-text h1{
    font-size:72px;
    line-height:1.1;
    margin:20px 0;
}

.hero-text p{
    color:#d2d2d2;
    line-height:1.8;
    font-size:18px;
    margin-bottom:40px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.btn-primary{
    background:#00ffb3;
    color:#000;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#000;
}

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

.hero-image img{
    width:100%;
    max-width:560px;
    border-radius:30px;
    box-shadow:0 0 60px rgba(0,255,179,0.25);
}

/* ================= SERVICES ================= */

.services{
    padding:110px 7%;
    background:#0c0c0c;
}

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

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

.title p{
    color:#c4c4c4;
}

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

.service-card{
    background:#131313;
    padding:40px 30px;
    border-radius:28px;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.06);
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#00ffb3;
}

.service-card img{
    width:80px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:26px;
    margin-bottom:15px;
}

.service-card p{
    color:#cfcfcf;
    line-height:1.8;
}

/* ================= APPS ================= */

.apps{
    padding:110px 7%;
}

.app-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.app-card{
    background:#121212;
    border-radius:30px;
    overflow:hidden;
    transition:0.4s;
}

.app-card:hover{
    transform:scale(1.03);
}

.app-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.app-content{
    padding:30px;
}

.app-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.app-content p{
    color:#d2d2d2;
    line-height:1.8;
    margin-bottom:25px;
}

/* ================= DASHBOARD ================= */

.dashboard{
    padding:110px 7%;
    background:#0d0d0d;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.dashboard-text{
    flex:1;
}

.dashboard-text h2{
    font-size:58px;
    margin-bottom:25px;
}

.dashboard-text p{
    color:#d0d0d0;
    line-height:1.9;
    margin-bottom:35px;
}

.dashboard-image{
    flex:1;
}

.dashboard-image img{
    width:100%;
    border-radius:28px;
}

/* ================= PLANS ================= */

.plans{
    padding:110px 7%;
    background:#111;
}

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

.plan-card{
    background:#1a1a1a;
    padding:45px 30px;
    border-radius:30px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.4s;
}

.plan-card:hover{
    border-color:#00ffb3;
    transform:translateY(-8px);
}

.plan-card h3{
    font-size:28px;
    margin-bottom:20px;
}

.price{
    font-size:54px;
    color:#00ffb3;
    margin-bottom:25px;
    font-weight:800;
}

.plan-card ul{
    list-style:none;
    margin-bottom:35px;
}

.plan-card ul li{
    margin:14px 0;
    color:#d0d0d0;
}

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

.cta{
    padding:130px 7%;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1600&auto=format&fit=crop') center/cover;
}

.cta h2{
    font-size:64px;
    margin-bottom:25px;
}

.cta p{
    max-width:750px;
    margin:auto;
    color:#e0e0e0;
    line-height:1.9;
    margin-bottom:40px;
}

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

footer{
    background:#000;
    padding:40px;
    text-align:center;
    color:#808080;
    font-size:14px;
}

    
    
    
/* ANIMAÇÃO X */

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(7px,7px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}
    
    
  /* MENU HAMBURGUER */

.menu-toggle{
    width:32px;
    height:24px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle span{
    width:100%;
    height:3px;
    background:#fff;
    border-radius:10px;
    transition:0.4s;
}

/* ANIMAÇÃO */

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(7px,7px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}  
    
    
    
/* ================= RESPONSIVO ================= */
@media(max-width:980px){

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-text h1{
        font-size:52px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .dashboard{
        flex-direction:column;
    }

    .dashboard-text{
        text-align:center;
    }

    /* HAMBURGUER */

    .menu-toggle{
        display:flex;
    }

    /* MENU MOBILE */

    nav{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#0c0c0c;
        display:flex;
        flex-direction:column;
        padding:120px 40px;
        gap:28px;
        transition:0.4s;
        border-left:1px solid rgba(255,255,255,0.08);
        z-index:1000;
    }

    nav.active{
        right:0;
    }

    nav a{
    margin-left:0;
    font-size:18px;
    color:#00ffb3;
}
}
    

    
    /* ================= TESTIMONIALS ================= */

.testimonials{
    padding:110px 7%;
    background:#0b0b0b;
    overflow:hidden;
}

.testimonial-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 40s linear infinite;
}

.testimonial-card{
    width:320px;
    background:#141414;
    padding:40px 30px;
    border-radius:28px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.06);
    transition:0.4s;
    flex-shrink:0;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#00ffb3;
}

.testimonial-card img{
    width:95px;
    height:95px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
    border:4px solid #00ffb3;
}

.testimonial-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#d4d4d4;
    line-height:1.8;
    font-size:15px;
}

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* MENU DESKTOP */

nav{
    display:flex;
    align-items:center;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:28px;
    transition:0.3s;
    font-size:15px;
}

nav a:hover{
    color:#00ffb3;
}
    /*----------- FIM DO CARROCEL ---------------*/

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

    
    
    
    
    /* ================= SOBRE NEXSIS ================= */

.about-nexsis{
    padding:120px 7%;
    background:#080808;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
    min-width:320px;
}

.about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 0 50px rgba(0,255,179,0.18);
    object-fit:cover;
}

.about-text{
    flex:1;
    min-width:320px;
}

.about-text span{
    color:#00ffb3;
    font-weight:600;
    letter-spacing:2px;
}

.about-text h2{
    font-size:52px;
    line-height:1.2;
    margin:20px 0;
}

.about-text p{
    color:#d0d0d0;
    line-height:1.9;
    margin-bottom:25px;
    font-size:17px;
}

/* RESPONSIVO */

@media(max-width:980px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-text h2{
        font-size:38px;
    }

}
    
 /* ================= fim SOBRE NEXSIS ================= */   
    
    
    
    /* ================= INÍCIO DO WHATSAPP ================= */  
    .whatsapp-float{

    position:fixed;
    width:70px;
    height:70px;
    bottom:30px;
    right:30px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    z-index:9999;
    transition:0.3s;
    animation: pulse 2s infinite;

}

.whatsapp-float:hover{

    transform:scale(1.12);

}

.whatsapp-float img{

    width:38px;
    height:38px;

}

@keyframes pulse {

    0%{

        box-shadow:0 0 0 0 rgba(37,211,102,0.7);

    }

    70%{

        box-shadow:0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(37,211,102,0);

    }

}

@media(max-width:700px){

    .whatsapp-float{

        width:62px;
        height:62px;
        right:20px;
        bottom:20px;

    }

    .whatsapp-float img{

        width:34px;
        height:34px;

    }

}
   
/*---------------------INÍCIO CARROCELL--------------------------*/
.testimonial-slider{

    overflow:hidden;
    width:100%;
    position:relative;
    margin-top:50px;

}

.testimonial-track{

    display:flex;
    gap:25px;
    width:max-content;
    animation: scrollTestimonials 45s linear infinite;

}

.testimonial-slider:hover .testimonial-track{

    animation-play-state:paused;

}

.testimonial-card{

    min-width:320px;
    max-width:320px;

}

@keyframes scrollTestimonials {

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.btn-assinar{

    display:inline-block;
    margin-top:20px;
    background:#00ffb3;
    color:#000;
    text-decoration:none;
    padding:14px 26px;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(37,211,102,0.25);

}

.btn-assinar:hover{

    background:#25D366;
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(37,211,102,0.35);

}











/*---------------------INÍCIO CONTATO--------------------------*/
.footer{

    background:#0b0b0b;
    padding:35px 20px;
    border-top:1px solid rgba(255,255,255,0.08);

}

.footer-content{

    max-width:1200px;
    margin:margin-left:60px;

    display:flex;
    align-items:center;

    flex-wrap:wrap;
    gap:40px;

}

.footer-links{

    display:flex;
    align-items:center;
    gap:118px;

    margin-left:auto;

}



.footer p{

    color:#bdbdbd;
    font-size:15px;

}

.footer-links{

    display:flex;
    align-items:center;
    gap:18px;

}

.footer-links a{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#151515;

    color:#fff;
    text-decoration:none;

    transition:0.3s;

    font-size:20px;

}

.footer-links a:hover{

    background:#25D366;
    transform:translateY(-4px);

}
/*---------------------FINAL CONTATO--------------------------*/



/* =========================
ICONES FOOTER MOBILE
========================= */

@media(max-width:768px){

    .footer-links a i{

        color:#d6d6d6 !important;

    }

}






/* =========================
FOOTER MOBILE AJUSTE
========================= */

@media(max-width:768px){

    .footer-content{

        justify-content:flex-start;

        gap:20px;

    }

    .footer-links{

        margin-left:0 !important;

        justify-content:flex-start;

        width:100%;

        gap:14px;

    }

}



/* =========================
FOOTER MOBILE CENTRALIZADO
========================= */

@media(max-width:768px){

    .footer-content{

        flex-direction:column;

        justify-content:center;

        align-items:center;

        text-align:center;

        gap:20px;

    }

    .footer-links{

        margin-left:0 !important;

        width:100%;

        justify-content:center;

        gap:16px;

    }

    .footer-links a i{

        color:#d6d6d6 !important;

    }

}



