/* =====================================================

   ABBA TI 2026

   Segurança • Pentest • Infraestrutura • IA

===================================================== */

:root{

    --primary:#007bff;
    --primary-dark:#005fd1;

    --orange:#ff7a00;

    --dark:#050814;
    --dark-2:#07111f;
    --dark-3:#0f172a;

    --light:#f8fafc;
    --gray:#64748b;

    --white:#ffffff;

}

/* =====================================================
   GERAL
===================================================== */

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Segoe UI",sans-serif;

    background:#ffffff;

    color:#1e293b;

    overflow-x:hidden;

}

section{

    padding-top:90px;
    padding-bottom:90px;

}

h1,
h2,
h3,
h4,
h5{

    font-weight:700;

}

p{

    color:#475569;

}

/* =====================================================
   NAVBAR
===================================================== */

.navbar-abba{

    background:linear-gradient(
        90deg,
        #000000 0%,
        #000000 25%,
        #050814 55%,
        #07111f 100%
    );

    backdrop-filter:blur(15px);

    transition:.3s;

    padding-top:10px;
    padding-bottom:10px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.navbar-logo{

    height:100px;

    width:200px;

    transition:.3s;

}

.navbar-logo:hover{

    transform:scale(1.03);

}

.navbar-nav .nav-link{

    color:rgba(255,255,255,.85);

    margin-left:10px;

    font-weight:500;

}

.navbar-nav .nav-link:hover{

    color:#fff;

}

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

.btn-primary{

    background:linear-gradient(
        135deg,
        #007bff,
        #3399ff
    );

    border:none;

    border-radius:14px;

    padding:12px 26px;

    font-weight:600;

}

.btn-primary:hover{

    transform:translateY(-2px);

}

.btn-outline-light{

    border-radius:14px;

}

.btn-portal-pulse{

    background:#ff7a00;

    color:#fff !important;

    border:none;

    font-weight:700;

    border-radius:12px;

    padding:12px 24px;

    box-shadow:
        0 0 15px rgba(255,122,0,.5);

    animation:pulsePortal 2s infinite;

}

.btn-portal-pulse:hover{

    background:#ff8f1f;

    transform:translateY(-2px);

}

@keyframes pulsePortal{

    0%{

        box-shadow:
        0 0 0 0 rgba(255,122,0,.7);

    }

    70%{

        box-shadow:
        0 0 0 18px rgba(255,122,0,0);

    }

    100%{

        box-shadow:
        0 0 0 0 rgba(255,122,0,0);

    }

}

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

.hero{

    min-height:100vh;

    background:

        radial-gradient(
            circle at top right,
            rgba(0,123,255,.25),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(255,122,0,.10),
            transparent 45%
        ),

        linear-gradient(
            135deg,
            #050814,
            #07111f,
            #0f172a
        );

    color:white;

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

}

/* =====================================================
   MATRIX CANVAS
===================================================== */

#matrixCanvas{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    pointer-events:none;

    opacity:.60;

    z-index:1;

}

.hero .container{

    position:relative;

    z-index:2;

}

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

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

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

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

    color:#fff;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:.3px;

    backdrop-filter:blur(10px);

}

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

.hero h1{

    font-size:3.5rem;

    line-height:1.1;

    margin-top:25px;

}

.hero p{

    color:rgba(255,255,255,.82);

    font-size:1.15rem;

}

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

.hero-logo-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:450px;

}

.hero-logo-wrapper::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:

        radial-gradient(
            circle,
            rgba(13,110,253,.18),
            transparent 70%
        );

    filter:blur(45px);

    z-index:0;

}


.hero-logo{

    max-width:580px;

    width:100%;

    position:relative;

    z-index:2;

    filter:

        drop-shadow(0 0 25px rgba(0,123,255,.45))
        drop-shadow(0 0 25px rgba(255,122,0,.20));

    animation:heroFloat 6s ease-in-out infinite;

}

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

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/* =====================================================
   SECTION TAGS
===================================================== */

.section-tag{

    display:inline-block;

    background:#0d6efd;

    color:#fff;

    padding:8px 14px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:.5px;

}

.section-tag-light{

    display:inline-block;

    background:#ffffff20;

    color:#fff;

    padding:8px 14px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

}

/* =====================================================
   EMPRESA
===================================================== */

.empresa-logo{

    width:100%;

    max-width:450px;

    margin:auto;

    display:block;

}

/* =====================================================
   ESTATÍSTICAS
===================================================== */

.stats-number{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

}

.stats-text{

    color:#64748b;

}

/* =====================================================
   SOLUTION CARDS
===================================================== */

.solution-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px;

    height:100%;

    border:1px solid rgba(0,0,0,.05);

    transition:.3s;

    box-shadow:
        0 15px 35px rgba(0,0,0,.06);

}

.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.12);

}

.solution-card i{

    font-size:52px;

    color:var(--primary);

    margin-bottom:20px;

    display:block;

}

.solution-card h4{

    margin-bottom:15px;

}

.solution-card p{

    margin-bottom:0;

}

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

.hero-card{

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

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

    border-radius:24px;

    padding:40px;

    backdrop-filter:blur(12px);

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

}

.hero-icon{

    font-size:90px;

    color:#60a5fa;

}

/* =====================================================
   IA
===================================================== */

#ia{

    background:
        linear-gradient(
            180deg,
            #f8fafc,
            #ffffff
        );

}

#ia ul{

    padding-left:20px;

}

#ia li{

    margin-bottom:12px;

}

.ia-list{

    margin-top:25px;

}

.ia-list li{

    margin-bottom:12px;

    font-size:1rem;

}

/* =====================================================
   AUTOMAÇÃO
===================================================== */

#automacao{

    background:#ffffff;

}

/* =====================================================
   CTA / PORTAL CLIENTE
===================================================== */

.cta-section{
    background:
        linear-gradient(
            135deg,
            #050814,
            #07111f,
            #07111f
        );
}

    color:white;

    position:relative;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(255,255,255,.08),
            transparent 50%
        );

    pointer-events:none;

}

.cta-section .container{

    position:relative;

    z-index:2;

}

.cta-section p{

    color:rgba(255,255,255,.85);

}

.cta-logo{

    max-width:420px;

    width:100%;

}

.cta-section .hero-card{

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

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

    text-align:center;

    transition:.3s;

}

.cta-section .hero-card:hover{

    transform:translateY(-6px);

}

.cta-section .hero-icon{

    font-size:60px;

}

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

#tecnologias .solution-card{

    text-align:center;

}

#tecnologias .solution-card i{

    font-size:58px;

}

/* =====================================================
   PROCESSO / METODOLOGIA
===================================================== */

#processo .solution-card{

    text-align:center;

}

#processo .solution-card i{

    font-size:48px;

}

/* =====================================================
   CONTATO
===================================================== */

#contato .solution-card{

    max-width:700px;

    margin:auto;

}

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

footer{

    background:#050b14;

    color:white;

    padding-top:70px;
    padding-bottom:70px;

}

.footer-logo{

    width:100%;

    max-width:300px;

}

footer h5{

    margin-bottom:20px;

    font-weight:700;

}

footer ul{

    padding-left:0;

}

footer ul li{

    list-style:none;

    margin-bottom:10px;

    color:#cbd5e1;

}

footer p{

    color:#cbd5e1;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#07111f;

}

::-webkit-scrollbar-thumb{

    background:#007bff;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#3399ff;

}

/* =====================================================
   TRANSIÇÕES GLOBAIS
===================================================== */

a,
button,
.btn,
.solution-card,
.hero-card{

    transition:.3s ease;

}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-divider{

    height:1px;

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

    margin:15px 0;

}

/* =====================================================
   TABLET
===================================================== */

@media(max-width:1199px){

    .hero h1{

        font-size:3rem;

    }

    .hero-logo{

        max-width:480px;

    }

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:991px){

    section{

        padding-top:70px;
        padding-bottom:70px;

    }

    .navbar-logo{

        height:55px;

    }

    .navbar-collapse{

        margin-top:15px;

        padding-top:15px;

    }

    .navbar-nav{

        text-align:center;

    }

    .navbar-nav .nav-link{

        margin-left:0;

        padding:12px 0;

    }

    .btn-portal-pulse{

        width:100%;

        margin-top:15px;

    }

    .hero{

        min-height:auto;

        text-align:center;

        padding-top:140px;

        padding-bottom:60px;

    }

    .hero h1{

        font-size:2.3rem;

        line-height:1.15;

    }

    .hero p{

        font-size:1rem;

    }

    .hero-logo-wrapper{

        min-height:320px;

        margin-bottom:15px;

    }

    .hero-logo{

        max-width:260px;

        margin-top:0;

    }

    .hero-badge{

        font-size:.8rem;

    }

    .empresa-logo{

        max-width:300px;

    }

    .cta-logo{

        max-width:280px;

    }

    .solution-card{

        padding:25px;

    }

    .hero-card{

        padding:25px;

    }

    .hero-icon{

        font-size:55px;

    }

    .display-5{

        font-size:2rem;

    }

    .display-4{

        font-size:2rem;

    }

}

/* =====================================================
   CELULARES PEQUENOS
===================================================== */

@media(max-width:576px){

    .hero{

        padding-top:120px;

    }

    .hero h1{

        font-size:2rem;

    }

    .hero-logo{

        max-width:320;

    }

    .section-tag,
    .section-tag-light{

        font-size:.75rem;

        padding:7px 12px;

    }

    .solution-card{

        padding:20px;

        border-radius:18px;

    }

    .hero-card{

        padding:20px;

        border-radius:18px;

    }

    .hero-icon{

        font-size:48px;

    }

}

/* =====================================================
   MATRIX CANVAS
===================================================== */

#matrixCanvas{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:0;

    pointer-events:none;

}

.hero{

    position:relative;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(5,8,20,.35);

    z-index:1;

}

.hero .container{

    position:relative;

    z-index:2;

}



/* =====================================================
   PERFORMANCE
===================================================== */

.hero-logo,
.solution-card,
.hero-card{

    will-change:transform;

}

/* =====================================================
   FIX OVERFLOW IOS / ANDROID
===================================================== */

html,
body{

    max-width:100%;

    overflow-x:hidden;

}

/* =====================================================
   ABBA TI DARK MODE OVERRIDE
===================================================== */

body{
    background:#050814 !important;
    color:#e2e8f0 !important;
}

section{
    background:#050814;
    color:#e2e8f0;
}

.bg-light{
    background:#07111f !important;
}

h1,
h2,
h3,
h4,
h5,
h6{
    color:#ffffff;
}

p,
.lead{
    color:#cbd5e1;
}

.solution-card{
    background:#0f172a !important;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.solution-card p{
    color:#cbd5e1;
}

#ia{
    background:#07111f !important;
}

#automacao{
    background:#050814 !important;
}

#empresa{
    background:#050814 !important;
}

#solucoes{
    background:#050814 !important;
}

#tecnologias{
    background:#050814 !important;
}

#processo{
    background:#07111f !important;
}

#contato{
    background:#050814 !important;
}

/* LOGOS */

.empresa-logo{
    max-width:420px;
    width:100%;
}

.cta-logo{
    max-width:320px;
    width:100%;
}

/* HERO */

.hero-logo-wrapper::before{
    width:380px;
    height:380px;
}

@media(max-width:991px){

    .hero-logo-wrapper::before{
        width:320px;
        height:320px;
    }

}

/* AJUSTE LOGO MOBILE */

@media(max-width:991px){

    .hero-logo{

        max-width:320px !important;

    }

}

/* PÁGINAS INTERNAS */

.hero-internal{

    min-height:45vh;

    display:flex;

    align-items:center;

    text-align:center;

}

.hero-internal h1{

    max-width:1000px;

    margin:auto;

}

.hero-internal .lead{

    max-width:900px;

}

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

.hero-internal{

    min-height:auto !important;

    padding-top:180px;
    padding-bottom:100px;

}

.hero-internal h1{

    max-width:1100px;

    margin-left:auto;
    margin-right:auto;

}

.hero-internal .section-tag{

    margin-bottom:15px;

}

/* ==========================================
   CLIENTES E PARCEIROS
========================================== */

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

.logo-track{
    display:flex;
    gap:60px;
    width:max-content;
    animation: scrollLogos 40s linear infinite;
}

.logo-track img{
    height:70px;
    object-fit:contain;
    background:#fff;
    padding:10px;
    border-radius:12px;
}

@keyframes scrollLogos{

    from{
        transform:translateX(0);
    }

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

}

.logo-item{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:260px;
    padding:20px;
}

.logo-item img{
    max-height:120px;
    max-width:220px;
    object-fit:contain;
    transition:.3s;
}

.logo-item img:hover{
    transform:scale(1.08);
}