
:root{

    --primary:#2563eb;
    --primary-hover:#1d4ed8;

    --dark:#020617;
    --dark-2:#0f172a;

    --text:#334155;
    --text-light:#64748b;

    --white:#ffffff;

    --bg:#d6d6d6;

    --shadow:
    0 15px 35px rgba(0,0,0,.08);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

}

.container{

    width:92%;

    max-width:1300px;

    margin:auto;

}

/* ===========================
   TOPO
=========================== */

.topo{

    background:rgba(2,6,23,.95);

    backdrop-filter:blur(15px);

    position:sticky;

    top:0;

    z-index:9999;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.topo .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{
height:4vh;
    display:flex;

    align-items:center;

}

.logo img{

    height:100%;

    width:auto;

}

nav{

    display:flex;

    gap:30px;

}

nav a{

    text-decoration:none;

    color:#cbd5e1;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#f97316;

}
.video-cdt{

    padding:0;

    overflow:hidden;

}

.video-cdt video{

    width:100%;

    display:block;

}

/* ===========================
 seguraca
=========================== */

.seguranca{

    background:#ffffff;

}

.seguranca-grid{

    display:grid;

    grid-template-columns:55% 45%;

    gap:40px;

    align-items:center;

}

.seg-badge{

    display:inline-block;

    padding:10px 18px;

    background:#eff6ff;

    color:#2563eb;

    border-radius:50px;

    font-weight:600;

    margin-bottom:20px;

}

.seguranca-texto h2{

    font-size:48px;

    color:#0f172a;

    margin-bottom:20px;

}

.seguranca-texto p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:15px;

}

.seg-itens{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin-top:30px;

}

.seg-item{

    background:#f8fafc;

    padding:18px;

    border-radius:16px;

    font-weight:600;

    border:1px solid #e2e8f0;

}

.seguranca-imagem img{

    width:100%;

    max-height:450px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

@media(max-width:992px){

    .seguranca-grid{

        grid-template-columns:1fr;

    }

}
/* ===========================
   HERO
=========================== */

.hero{

    min-height:calc(70vh - 4vh);

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    radial-gradient(
        circle at right center,
        rgba(249,115,22,.12),
        transparent 25%
    ),

    radial-gradient(
        circle at left center,
        rgba(37,99,235,.08),
        transparent 30%
    ),

    linear-gradient(
        135deg,
        #020617,
        #071229,
        #0B1736
    );

}

.hero-grid{

    display:grid;

    grid-template-columns:
        minmax(500px,1fr)
        minmax(350px,520px);

    gap:40px;

    align-items:center;

}

.hero-texto{

    max-width:700px;
        position:relative;
   align-items:center;
    left:50%;

}

.badge{

    display:inline-block;

    padding:12px 20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    border-radius:50px;

    margin-bottom:25px;

    color:#cbd5e1;

    font-size:14px;
    display:block;

    width:max-content;

    margin:0 auto 25px auto;

}

.hero h1{

    font-size:clamp(
        48px,
        5vw,
        78px
    );

    line-height:1.05;

    font-weight:800;

    color:white;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    line-height:1.6;

    color:#cbd5e1;

    max-width:620px;

}

.hero-buttons{

    margin-top:35px;

    display:flex;
     justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#f97316;

    color:white;

    text-decoration:none;

    padding:18px 30px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

}

.btn-primary:hover{

    background:#ea580c;

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.15);

    color:white;

    text-decoration:none;

    padding:18px 30px;

    border-radius:14px;

    transition:.3s;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.05);

}

.hero-imagem{

    display:flex;

    justify-content:center;

    align-items:flex-start;

    margin-top:-25vh;

}

.hero-imagem img{

    width:100%;

    max-width:480px;

    height:auto;

    display:block;

    filter:
    drop-shadow(
        0 30px 60px rgba(249,115,22,.18)
    );

}

/* ===========================
   INDICADORES
=========================== */

.numeros{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:-70px;

    position:relative;

    z-index:50;

}

.numeros div{

    background:white;

    padding:35px;

    border-radius:24px;

    border-top:4px solid #f97316;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    text-align:center;

    transition:.3s;

}

.numeros div:hover{

    transform:translateY(-8px);

}

.numeros strong{

    display:block;

    font-size:42px;

    color:#f97316;

}

.numeros span{

    color:#64748b;

}

/* ===========================
   RESPONSIVO
=========================== */

@media(max-width:992px){

    .hero-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-texto{

        max-width:100%;

    }

    .hero-imagem{

        margin-top:30px;

    }

    .hero-imagem img{

        max-width:320px;

    }

    .numeros{

        grid-template-columns:1fr 1fr;

        margin-top:40px;

    }

}

@media(max-width:768px){

    nav{

        display:none;

    }

    .hero h1{

        font-size:38px;

    }

    .hero p{

        font-size:18px;

    }

    .numeros{

        grid-template-columns:1fr;

    }

}

/* SEÇÕES */

.secao{

    padding:80px 0;

}

#solucoes .container{

    height: 80vh;

}

.titulo-centro{

    text-align:center;

    max-width:900px;

    margin:auto;

}

.titulo-centro h2{

    font-size:48px;

    color:#0f172a;

    margin-bottom:10px;

}

.titulo-centro p{

    color:#64748b;

    font-size:18px;

}

/* DESTAQUE */

.destaque{

    background:white;

}

.numeros{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.numeros div{

    background:white;

    padding:35px;

    border-radius:24px;

    box-shadow:var(--shadow);

    text-align:center;

}

.numeros strong{

    display:block;

    font-size:42px;

    color:var(--primary);

}

.numeros span{

    color:#64748b;

}

/* ===========================
   PRODUTOS
=========================== */

.cards-produtos{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.produto{

    background:#ffffff;

    border-radius:28px;

    padding:30px;

    min-height:420px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

    border:1px solid #eef2f7;

    border-top:5px solid #f97316;

    transition:.3s;

    position:relative;

    overflow:hidden;

}

.produto:hover{

    transform:translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.12);

}



.icone{

    width:100%;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.icone img{

    width:200px;
    height:200px;
    padding:-20px -14px;
    object-fit:contain;
    justify-content:center; 
    

}

.produto h3{

    margin-bottom:15px;

    color:#0f172a;

    font-size:28px;

    font-weight:700;

}

.produto p{

    color:#64748b;

    margin-bottom:20px;

    line-height:1.6;

    min-height:80px;

}

.produto ul{

    list-style:none;

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}

.produto li{

    padding:8px 14px;

    background:#eff6ff;

    color:#2563eb;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    border:none;

}

/* CORES POR PRODUTO */

.produto:nth-child(1){

    border-top:5px solid #16a34a;

}

.produto:nth-child(2){

    border-top:5px solid #2563eb;

}

.produto:nth-child(3){

    border-top:5px solid #f97316;

}

/* RESPONSIVO */

@media(max-width:992px){

    .cards-produtos{

        grid-template-columns:1fr;

    }

    .produto{

        min-height:auto;

    }

}

/* IA */

.fundo-escuro{

    background:#0f172a;

}

.branco h2,
.branco p{

    color:white;

}

.cards-ia{

    margin-top:50px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.card-ia{

    background:white;

    padding:30px;

    border-radius:24px;

    text-align:center;

    font-weight:600;

}

/* CINZA */

.cinza{

    background:#f1f5f9;

}

/* FORM */

.formulario{

    max-width:800px;

    margin:50px auto 0;

}

.formulario input,
.formulario textarea{

    width:100%;

    padding:18px;

    margin-bottom:15px;

    border:1px solid #dbe2ea;

    border-radius:14px;

    font-size:15px;

}

.formulario textarea{

    height:160px;

}

.formulario button{

    width:100%;

    border:none;

    background:var(--primary);

    color:white;

    padding:18px;

    border-radius:14px;

    cursor:pointer;

    font-weight:700;

}

/* FOOTER */

footer{

    background:#020617;

    color:white;

    padding:70px 0;

}

.footer-content{

    text-align:center;

}

.footer-content img{

    width:180px;

    margin-bottom:20px;

}

.footer-content h3{

    margin-bottom:10px;

}

/* WHATSAPP */

.whatsapp{

    position:fixed;

    right:25px;

    bottom:200px;

    width:75px;

    height:75px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:38px;

    box-shadow:
        0 15px 40px rgba(37,211,102,.35);

    z-index:99999;

}
