/* ========================================
   NORTIVA • SERVICE.CSS
   Parte 1
======================================== */

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

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

:root{

    /* Cores */

    --background:#07070A;
    --surface:rgba(255,255,255,.03);
    --surface-hover:rgba(255,255,255,.05);

    --primary:#8B5CF6;
    --primary-hover:#7C3AED;

    --text:#FFFFFF;
    --text-secondary:#94A3B8;

    --border:rgba(255,255,255,.08);

    /* Layout */

    --radius:18px;

    --transition:.35s ease;

    --max-width:1200px;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

section{

    padding:110px 0;

}

.container{

    width:min(var(--max-width),92%);

    margin:auto;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(7,7,10,.72);

    backdrop-filter:blur(14px);

    border-bottom:1px solid var(--border);

    z-index:999;

}

.logo{

    font-size:1.55rem;

    font-weight:800;

    color:var(--primary);

}

nav{

    display:flex;

    gap:28px;

}

nav a{

    color:#CBD5E1;

    transition:var(--transition);

}

nav a:hover{

    color:#FFFFFF;

}

/* ========================================
   BOTÕES
======================================== */

.header-btn,
.primary,
.secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 26px;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}

.primary,
.header-btn{

    background:var(--primary);

    color:#FFF;

}

.primary:hover,
.header-btn:hover{

    background:var(--primary-hover);

    transform:translateY(-2px);

}

.secondary{

    border:1px solid var(--border);

    color:#FFF;

}

.secondary:hover{

    background:rgba(255,255,255,.05);

}

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

.hero{

    min-height:100vh;

    width:min(var(--max-width),92%);

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    padding-top:150px;

}

.hero-content{

    max-width:620px;

}

.tag{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.hero h1{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.05;

    margin-bottom:24px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    color:var(--text-secondary);

    font-size:1.05rem;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:38px;

    flex-wrap:wrap;

}

/* ========================================
   IMAGEM
======================================== */

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:560px;

    border-radius:72px;

    border:1px solid var(--border);

    background:var(--surface);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

    transition:var(--transition);

}

.hero-image img:hover{

    transform:translateY(-8px);

}

/* ========================================
   BLUR
======================================== */

.blur{

    position:fixed;

    width:350px;

    height:350px;

    border-radius:50%;

    background:var(--primary);

    filter:blur(170px);

    opacity:.18;

    pointer-events:none;

    z-index:-1;

}

.blur-1{

    top:-120px;

    left:-120px;

}

.blur-2{

    right:-120px;

    bottom:-120px;

}

/* ========================================
   SOBRE O SERVIÇO
======================================== */

.about-service{

    width:min(var(--max-width),92%);

    margin:auto;

}

.section-header{

    margin-bottom:50px;

}

.section-tag{

    display:inline-block;

    margin-bottom:16px;

    color:var(--primary);

    font-size:.9rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-header h2{

    font-size:clamp(2.2rem,4vw,3.5rem);

    line-height:1.1;

    margin-bottom:18px;

}

.section-header p{

    max-width:700px;

    color:var(--text-secondary);

}

.about-service>p{

    max-width:850px;

    color:var(--text-secondary);

    font-size:1.05rem;

}

/* ========================================
   O QUE ESTÁ INCLUSO
======================================== */

.includes{

    width:min(var(--max-width),92%);

    margin:auto;

}

.includes-box{

    display:grid;

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

    gap:18px;

    padding:35px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:22px;

}

.include-item{

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px;

    border-radius:14px;

    transition:var(--transition);

}

.include-item:hover{

    background:var(--surface-hover);

}

.include-item span{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(139,92,246,.12);

    color:var(--primary);

    font-weight:700;

    flex-shrink:0;

}

.include-item p{

    color:var(--text);

    font-weight:500;

}

/* ========================================
   TECNOLOGIAS
======================================== */

.technologies{

    width:min(var(--max-width),92%);

    margin:auto;

}

.tech-grid{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:40px;

}

.tech-item{

    padding:14px 22px;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:999px;

    color:var(--text);

    font-size:.95rem;

    font-weight:600;

    transition:var(--transition);

}

.tech-item:hover{

    background:var(--primary);

    border-color:var(--primary);

    transform:translateY(-3px);

}

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

.cta{

    width:min(var(--max-width),92%);

    margin:auto;

}

.cta-content{

    padding:70px;

    text-align:center;

    border-radius:26px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.03),
        rgba(255,255,255,.015)
    );

    border:1px solid var(--border);

}

.cta-content h2{

    font-size:clamp(2.2rem,5vw,4rem);

    margin:18px 0;

}

.cta-content p{

    max-width:650px;

    margin:auto;

    color:var(--text-secondary);

}

.cta .hero-buttons{

    justify-content:center;

}

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

.footer-simple{

    margin-top:100px;

    padding:30px 8%;

    border-top:1px solid var(--border);

    text-align:center;

    color:#6B7280;

    font-size:.9rem;

    letter-spacing:.5px;

}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width:1024px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;

        gap:70px;

        padding-top:160px;

    }

    .hero-content{

        max-width:700px;

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-image{

        order:-1;

    }

    .hero-image img{

        max-width:650px;

    }

    .section-header{

        text-align:center;

    }

    .section-header p{

        margin:auto;

    }

}

@media (max-width:768px){

    header{

        padding:18px 6%;

        flex-direction:column;

        gap:18px;

    }

    nav{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .header-btn{

        width:100%;

    }

    section{

        padding:80px 0;

    }

    .hero{

        padding-top:180px;

    }

    .hero h1{

        font-size:2.8rem;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons a{

        width:100%;

    }

    .includes-box{

        grid-template-columns:1fr;

        padding:25px;

    }

    .include-item{

        padding:16px;

    }

    .cta-content{

        padding:45px 25px;

    }

    .cta-content h2{

        font-size:2.2rem;

    }

}

@media (max-width:480px){

    .logo{

        font-size:1.35rem;

    }

    .tag,
    .section-tag{

        font-size:.8rem;

        letter-spacing:1px;

    }

    .hero h1{

        font-size:2.2rem;

    }

    .section-header h2{

        font-size:2rem;

    }

    .tech-grid{

        justify-content:center;

    }

    .tech-item{

        width:100%;

        text-align:center;

    }

}

/* ========================================
   ANIMAÇÕES
======================================== */

.hero-content,
.hero-image,
.about-service,
.includes,
.technologies,
.cta{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07070A;

}

::-webkit-scrollbar-thumb{

    background:#8B5CF6;

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#7C3AED;

}

/* ========================================
   SELECTION
======================================== */

::selection{

    background:#8B5CF6;

    color:#FFF;

}

/* ========================================
   UTILITÁRIOS
======================================== */

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:20px;

}

.mt-2{

    margin-top:40px;

}

.mt-3{

    margin-top:60px;

}

.mb-1{

    margin-bottom:20px;

}

.mb-2{

    margin-bottom:40px;

}

.mb-3{

    margin-bottom:60px;

}

.hidden{

    display:none;

}


/* ========================================
   SERVIÇO FORA DE CATÁLOGO
======================================== */


.unavailable{

    display:flex;

    justify-content:center;

    align-items:center;

}


.status-card{

    width:320px;

    padding:45px 35px;

    text-align:center;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:26px;

    backdrop-filter:blur(15px);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

    animation:statusFloat 4s ease-in-out infinite;

}



.status-card span{

    width:75px;

    height:75px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(139,92,246,.12);

    color:var(--primary);

    font-size:35px;

    font-weight:700;

}



.status-card h3{

    margin-top:25px;

    font-size:1.7rem;

    line-height:1.2;

}



.status-card p{

    margin-top:12px;

    color:var(--text-secondary);

    font-size:.95rem;

}



/* ========================================
   ANIMAÇÃO DO CARD
======================================== */


@keyframes statusFloat{


    0%{

        transform:translateY(0);

    }


    50%{

        transform:translateY(-12px);

    }


    100%{

        transform:translateY(0);

    }


}



/* ========================================
   AJUSTE DA NOVA SEÇÃO
======================================== */


.about-service{

    animation:fadeUp .8s ease both;

}



.cta{

    animation:fadeUp .8s ease .2s both;

}



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


@media(max-width:1024px){


    .status-card{

        width:300px;

    }


}



@media(max-width:768px){


    .status-card{

        width:280px;

        padding:35px 25px;

    }


}



@media(max-width:480px){


    .status-card{

        width:100%;

    }


    .status-card h3{

        font-size:1.4rem;

    }


}

/* ========================================
   FIM DO ARQUIVO
======================================== */
