:root{
    --bg:#0b1220;
    --panel:#0f1a30;
    --soft: rgba(255,255,255,.06);
    --text:#e8eefc;
    --muted: rgba(232,238,252,.72);
    --blue:#1e6fff;
    --blue2:#0f4fd6;
    --stroke: rgba(255,255,255,.12);
    --radius: 18px;
    --shadow: 0 18px 45px rgba(0,0,0,.35);
}

.container{ width:min(1120px, 92vw); margin:0 auto; }
.section{ padding:64px 0; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0)); }
.section--soft{ background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }

.h2{ font-size:34px; margin:0 0 10px; letter-spacing:-.02em; color: var(--blue)}
.h3{ font-size:18px; opacity:.9; margin:0 0 10px; }
.muted{ line-height:1.6; }
.small{ font-size:13px; }

.grid-2{ display:grid; grid-template-columns: 1.1fr .9fr; gap:34px; align-items:start; }
@media (max-width: 900px){ .grid-2{ grid-template-columns:1fr; } }

.hero{
    position:relative;
    min-height: 520px;
    color:var(--text);
    background: radial-gradient(1000px 500px at 70% 20%, rgba(30,111,255,.20), transparent 60%),
        linear-gradient(180deg, #061026, #050b18);
    overflow:hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero__bg{
    position:absolute; inset:0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: right center;
    filter: contrast(1.05) saturate(.9);
    opacity:.85;
}

.hero__overlay{
    position:absolute; inset:0;
    background:
        linear-gradient(90deg, rgba(5,10,20,.92) 0%,
        rgba(5,10,20,.85) 35%,
        rgba(5,10,20,.35) 65%,
        rgba(5,10,20,.12) 100%);
}

.hero__grid{
    position:relative;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 56px 0;
    min-height: 520px;
    align-items:center;
}

.hero__content{ max-width: 560px; }
.hero__kicker{ font-weight:700; letter-spacing:.08em; text-transform:uppercase; opacity:.9; }
.hero__title{ font-size:54px; margin:10px 0 14px; letter-spacing:-.03em; line-height:1.03; }
.hero__lead{ margin:0 0 12px; color: #FFF;}

.hero__cta{ display:flex; gap:12px; margin-top:22px; flex-wrap:wrap; }

.btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding: 12px 18px;
    border-radius: 12px;
    border:1px solid var(--stroke);
    text-decoration:none;
    color:var(--text);
    font-weight:700;
    transition: .18s ease;
    box-shadow: none;
}
.btn--primary{
    background: linear-gradient(180deg, var(--blue), var(--blue2));
    border-color: rgba(30,111,255,.55);
    box-shadow: 0 10px 24px rgba(30,111,255,.25);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{ background: rgba(255,255,255,.04); }
.btn--ghost:hover{ background: rgba(255,255,255,.07); }

.hero__media{ height: 360px; } /* vazio só pra manter a coluna da foto */

.specs{
    margin: 18px 0 18px;
    display:grid;
    gap: 10px;
}
.spec{
    display:flex; justify-content:space-between; gap:14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}
.spec__value{ font-weight:800; }

.bullets{ margin-top: 18px; display:grid; gap: 14px; }
.bullet{ display:flex; gap: 12px; align-items:flex-start; }
.bullet__icon{
    width:40px; height:40px; border-radius: 12px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(30,111,255,.14);
    border:1px solid rgba(30,111,255,.25);
    color: rgba(232,238,252,.95);
}
.bullet__title{ font-weight:800; margin-bottom:4px; }
.bullet__desc{ line-height:1.55; }

.card{
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow:hidden;
}
.media-card__top img{ width:100%; height:auto; display:block; }
.media-card__bottom{ padding:14px 16px 18px; }

.chips{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px; }
.chip{
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(30,111,255,.14);
    border:1px solid rgba(30,111,255,.25);
    font-weight:800;
    font-size:13px;
}

.checklist{ list-style:none; padding:0; margin:18px 0 0; display:grid; gap:10px; }
.checklist li{
    position:relative;
    padding-left: 26px;
}
.checklist li:before{
    content:"";
    position:absolute; left:0; top:7px;
    width:12px; height:12px; border-radius:50%;
    background: rgba(30,111,255,.9);
    box-shadow: 0 0 0 3px rgba(30,111,255,.18);
}

.gallery{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.gallery__item{
    border-radius: 16px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.02);
}
.gallery__item img{ width:100%; height:160px; object-fit:cover; display:block; }
.gallery__label{
    padding: 10px 12px;
    font-weight:800;
    border-top:1px solid rgba(255,255,255,.08);
}

.why{
    margin-top: 18px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 900px){ .why{ grid-template-columns:1fr; } }

.why__item{
    display:flex; gap:10px; align-items:flex-start;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}
.why__dot{
    width:10px; height:10px; border-radius:50%;
    background: rgba(30,111,255,.9);
    margin-top: 6px;
    flex:0 0 auto;
}
.bullet__icon{
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a; /* <- define a cor do traço */
}

.bullet__icon svg{
    width: 22px;
    height: 22px;
    display: block;
}

h1,h2,h3,h4,h5{
    margin: 0
}
p, a, span{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #444;
    margin: 0;
    font-size: 1em
}
.marBot10{
    margin-bottom: 10px
}
.marBot20{
    margin-bottom: 20px
}
.marBot30{
    margin-bottom: 30px
}
.marBot40{
    margin-bottom: 40px
}
.marBot50{
    margin-bottom: 50px
}
.marTop10{
    margin-top: 10px
}
.marTop20{
    margin-top: 20px
}
.marTop30{
    margin-top: 30px
}
.marTop40{
    margin-top: 40px
}
.marTop50{
    margin-top: 50px
}

.padBot10{
    padding-bottom: 10px
}
.padBot20{
    padding-bottom: 20px
}
.padBot30{
    padding-bottom: 30px
}
.padBot40{
    padding-bottom: 40px
}
.padBot50{
    padding-bottom: 50px
}
.padTop10{
    padding-top: 10px
}
.padTop20{
    padding-top: 20px
}
.padTop30{
    padding-top: 30px
}
.padTop40{
    padding-top: 40px
}
.padTop50{
    padding-top: 50px
}
.backTopoDesk{
    background: url('<?php echo IMG ?>back-topo.jpg') no-repeat center;
    width: 100%
}
.backTopoDeskLog{
    background: url('<?php echo IMG ?>back-topo-login.jpg') no-repeat center;
    width: 100%;
    min-height: 1000px
}
.backTopoMob{
    background: url('<?php echo IMG ?>back-topo-mob.jpg') no-repeat center;
    width: 100%
}
.menuSelecionado{
    color:#00dada;
    font-weight: 700;
    padding: 10px 10px;
}
.menuSelecionado:hover{
    text-decoration: none;
    color:#00dada;
}
.menuNormal{
    color: #FFF;
    font-weight: 700;
    padding: 10px 10px;
}
.menuNormal:hover{
    text-decoration: none;
    color: #FFF;
}
.corIntatica{
    color: #00dada;
}
.corBranco{
    color: #FFF;
}

.bold{
    font-weight: 700
}
.font11{
    font-size: 0.9em;
}
.font14{
    font-size: 1.3em;
}
.font20{
    font-size: 2.3em;
}
.fontChamada{
    font-family: 'Caveat', cursive;
}
img{
    max-width: 99%
}
.botaoIntatica{
    background: #00dada;
    padding: 10px 25px;
    margin-right: 25px;
    color: #FFF;
    font-weight: 700;
}
.botaoIntatica:hover{
    background: #00AAAA;
    text-decoration: none;
    color: #FFF;
}
.botaoBranco{
    background: #FFF;
    padding: 10px 25px;
    font-weight: 700;
    color: #00dada;
    box-shadow: 0 0 5px #DDD;
    cursor: pointer
}
.botaoBranco:hover{
    text-decoration: none;
    color:#00dada;
    background: #F9F9F9;
}
.botaoVerde{
    background: lime;
    padding: 10px 25px;
    font-weight: 700;
    color: #333;
    cursor: pointer
}
.botaoVerde:hover{
    text-decoration: none;
    color:#333;
    background: limegreen;
}
.botaoAzul{
    background: #337ab7;
    padding: 10px 25px;
    font-weight: 700;
    color: #FFF;
    border-radius: 4px;
    cursor: pointer
}
.botaoAzul:hover{
    text-decoration: none;
    color:#FFF;
    background: #204d74;
}