:root {
    --bg:#061216;
    --surface:#0b1e24;
    --surface2:#10282f;
    --line:rgba(255, 255, 255, .1);
    --text:#eefafa;
    --muted:#a5bbc0;
    --brand:#27c1c8;
    --brand2:#64e2b8;
    --ink:#102126;
    --paper:#f4f8f8;
    --shadow:0 24px 70px rgba(0, 0, 0, .25)
}
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth
}
body {
    margin:0;
    font-family:Inter, "Segoe UI", Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
    margin-top: -50px;
    
}
a {
    color:inherit
}
.container {
    width:min(1160px, calc(100% - 36px));
    margin:auto
}
.eyebrow {
    font-size:12px;
    font-weight:900;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--brand)
}
.site-header {
    position:sticky;
    top:0;
    z-index:99;
    background:rgba(6, 18, 22, .88);
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--line)
}
.nav {
    height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px
}
.logo {
    text-decoration:none;
    font-weight:900;
    font-size:25px;
    letter-spacing:.05em
}
.logo span {
    color:var(--brand)
}
.menu {
    display:flex;
    align-items:center;
    gap:28px
}
.menu a {
    text-decoration:none;
    color:var(--muted);
    font-size:14px;
    font-weight:800
}
.menu a:hover, .menu a.active {
    color:#fff
}
.menu .contact-link {
    border:1px solid rgba(39, 193, 200, .5);
    padding:10px 16px;
    border-radius:10px;
    color:#fff
}
.menu-toggle {
    display:none;
    border:1px solid var(--line);
    background:transparent;
    color:#fff;
    border-radius:9px;
    padding:8px 11px;
    font-size:20px
}
.hero {
    position:relative;
    overflow:hidden;
    padding:112px 0 92px;
    background:radial-gradient(circle at 82% 22%, rgba(39, 193, 200, .2), transparent 28%), radial-gradient(circle at 10% 82%, rgba(100, 226, 184, .1), transparent 30%)
}
.hero:before {
    content:"";
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size:54px 54px;
    mask-image:linear-gradient(#000, transparent)
}
.hero-grid {
    position:relative;
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:66px;
    align-items:center
}
.hero h1 {
    font-size:clamp(47px, 7vw, 82px);
    line-height:1.01;
    letter-spacing:-.05em;
    margin:16px 0 24px
}
.gradient-text {
    background:linear-gradient(90deg, var(--brand), var(--brand2));
    -webkit-background-clip:text;
    color:transparent
}
.lead {
    font-size:19px;
    color:var(--muted);
    max-width:680px
}
.actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:34px
}
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:14px 20px;
    border-radius:11px;
    font-size:14px;
    font-weight:900;
    border:1px solid transparent
}
.btn-primary {
    background:linear-gradient(90deg, var(--brand), #25a8c7);
    color:#041114
}
.btn-ghost {
    border-color:var(--line);
    background:rgba(255, 255, 255, .025);
    color:#fff
}
.btn-light {
    background:#fff;
    color:#08666c
}
.tech-card {
    position:relative;
    border:1px solid var(--line);
    border-radius:26px;
    padding:28px;
    background:linear-gradient(145deg, rgba(18, 40, 47, .95), rgba(7, 22, 27, .95));
    box-shadow:var(--shadow)
}
.status-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:var(--muted);
    font-size:12px
}
.status {
    display:flex;
    align-items:center;
    gap:8px
}
.dot {
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--brand2);
    box-shadow:0 0 16px var(--brand2)
}
.workflow {
    display:grid;
    gap:15px;
    margin-top:28px
}
.wf-item {
    display:flex;
    gap:14px;
    align-items:center;
    padding:15px;
    border:1px solid var(--line);
    border-radius:13px;
    background:rgba(255, 255, 255, .04)
}
.wf-icon {
    width:42px;
    height:42px;
    border-radius:10px;
    display:grid;
    place-items:center;
    background:rgba(39, 193, 200, .14);
    color:var(--brand);
    font-weight:900
}
.wf-item small {
    display:block;
    color:var(--muted)
}
.wave {
    height:58px;
    display:flex;
    gap:5px;
    justify-content:center;
    align-items:center;
    margin-top:24px
}
.wave i {
    width:5px;
    height:14px;
    border-radius:8px;
    background:linear-gradient(var(--brand2), var(--brand));
    animation:wave 1.15s ease-in-out infinite
}
.wave i:nth-child(2n) {
    animation-delay:.12s
}
.wave i:nth-child(3n) {
    animation-delay:.24s
}
@keyframes wave {
    50% {
        height:54px
    }
}
.section {
    padding:90px 0
}
.section-light {
    background:var(--paper);
    color:var(--ink)
}
.section-head {
    display:flex;
    justify-content:space-between;
    gap:32px;
    align-items:end;
    margin-bottom:38px
}
.section-head h2, .content-title {
    font-size:clamp(35px, 5vw, 55px);
    line-height:1.08;
    letter-spacing:-.04em;
    margin:8px 0
}
.section-head p {
    max-width:560px;
    color:#60767a;
    margin:0
}
.products {
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:18px
}
.product-card {
    grid-column:span 2;
    display:flex;
    flex-direction:column;
    min-height:360px;
    padding:24px;
    border:1px solid #dce8e9;
    border-radius:21px;
    background:#fff;
    box-shadow:0 12px 36px rgba(18, 51, 58, .07);
    transition:.25s
}
.product-card:nth-child(4), .product-card:nth-child(5) {
    grid-column:span 2
}
.product-card:hover {
    transform:translateY(-6px);
    box-shadow:0 20px 48px rgba(18, 51, 58, .12)
}
.product-art {
    height:128px;
    border-radius:15px;
    background:linear-gradient(145deg, #082b31, #0c5863);
    display:grid;
    place-items:center;
    margin-bottom:22px;
    overflow:hidden
}
.product-art img {
    width:100%;
    #height:90%;
    object-fit:contain
}
.product-card h3 {
    font-size:23px;
    margin:0 0 8px
}
.product-card p {
    color:#64797d;
    font-size:15px;
    margin:0 0 18px
}
.chips {
    display:flex;
    gap:7px;
    flex-wrap:wrap;
    margin-top:auto
}
.chip {
    font-size:10px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    background:#e7f6f6;
    color:#127a82;
    padding:5px 8px;
    border-radius:999px
}
.more {
    margin-top:18px;
    color:#087b84;
    text-decoration:none;
    font-size:14px;
    font-weight:900
}
.platform-grid {
    display:grid;
    grid-template-columns:.86fr 1.14fr;
    gap:66px;
    align-items:center
}
.platform-copy p {
    color:#2d4145;
    font-size:17px
}
.pipeline {
    display:grid;
    gap:12px
}
.pipeline-item {
    display:grid;
    grid-template-columns:48px 1fr auto;
    gap:14px;
    align-items:center;
    padding:16px 18px;
    border:1px solid var(--line);
    border-radius:14px;
    background:rgba(255, 255, 255, .04)
}
.num {
    width:40px;
    height:40px;
    border-radius:10px;
    display:grid;
    place-items:center;
    background:rgba(39, 193, 200, .14);
    color:var(--brand);
    font-weight:900
}
.pipeline-item small {
    display:block;
    color:var(--muted)
}
.applications {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px
}
.application {
    padding:24px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(255, 255, 255, .04)
}
.application b {
    font-size:18px
}
.application p {
    font-size:14px;
    color:var(--muted);
    margin-bottom:0
}
.cta {
    padding:74px 0;
    background:linear-gradient(90deg, #0b6872, #087d82)
}
.cta-grid {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:38px
}
.cta h2 {
    font-size:clamp(34px, 5vw, 55px);
    line-height:1.05;
    letter-spacing:-.04em;
    margin:0 0 10px
}
.cta p {
    margin:0;
    color:#d9ffff
}
.page-hero {
    padding:86px 0 72px;
    background:radial-gradient(circle at 85% 20%, rgba(39, 193, 200, .18), transparent 28%)
}
.page-hero-grid {
    display:grid;
    grid-template-columns:1.25fr .75fr;
    gap:55px;
    align-items:center
}
.page-hero h1 {
    font-size:clamp(43px, 6vw, 68px);
    line-height:1.05;
    letter-spacing:-.045em;
    margin:15px 0 20px
}
.page-hero p {
    font-size:19px;
    color:var(--muted)
}
.page-icon {
    #border:1px solid var(--line);
    #border-radius:24px;
    padding-top:0px;
    padding-bottom: 0px;
    padding-left: 12px;
    padding-right: 12px;
    #background:linear-gradient(145deg, #082b31, #0b5660);
    #box-shadow:var(--shadow)
}
.page-icon img {
    #width:100%;
    height:278px;
    object-fit:contain
}
.back {
    display:inline-block;
    text-decoration:none;
    color:var(--brand);
    font-weight:900
}
.feature-grid {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px
}
.feature {
    padding:24px;
    border-radius:17px;
    border:1px solid #dce8e9;
    background:#fff
}
.feature h3 {
    margin:0 0 8px;
    font-size:19px
}
.feature p {
    margin:0;
    color:#64797d
}
.spec-strip {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
    margin-top:30px
}
.spec {
    padding:18px;
    border-radius:14px;
    background:#eaf5f5
}
.spec b {
    display:block;
    color:#08777f
}
.contact-grid {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:46px
}
.contact-card, .form-card {
    padding:30px;
    border:1px solid #dce8e9;
    border-radius:20px;
    background:#fff
}
.contact-card p {
    color:#60767a
}
.contact-lines {
    display:grid;
    gap:14px;
    margin-top:24px
}
.contact-line {
    padding:15px;
    border-radius:12px;
    background:#eef6f6
}
.contact-line small {
    display:block;
    color:#688084
}
.form-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px
}
.field {
    display:grid;
    gap:6px
}
.field.full {
    grid-column:1/-1
}
.field label {
    font-size:13px;
    font-weight:900
}
.field input, .field select, .field textarea {
    width:100%;
    padding:13px 14px;
    border:1px solid #cfdddf;
    border-radius:10px;
    font:inherit;
    background:#fbfdfd
}
.field textarea {
    min-height:150px;
    resize:vertical
}
.form-note {
    font-size:12px;
    color:#6d8286;
    margin-top:12px
}
footer {
    padding:34px 0;
    color:#789196;
    border-top:1px solid var(--line)
}
.footer-grid {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    font-size:13px
}
@media(max-width:900px) {
    .menu-toggle {
        display:block
    }
    .menu {
        display:none;
        position:absolute;
        top:76px;
        left:0;
        right:0;
        padding:18px;
        background:#07191e;
        border-bottom:1px solid var(--line);
        flex-direction:column;
        align-items:stretch
    }
    .menu.open {
        display:flex
    }
    .hero-grid, .platform-grid, .page-hero-grid, .contact-grid {
        grid-template-columns:1fr
    }
    .products {
        grid-template-columns:1fr 1fr
    }
    .product-card, .product-card:nth-child(4), .product-card:nth-child(5) {
        grid-column:span 1
    }
    .applications, .spec-strip {
        grid-template-columns:1fr 1fr
    }
    .section-head, .cta-grid {
        align-items:flex-start;
        flex-direction:column
    }
}
@media(max-width:620px) {
    .container {
        width:min(100% - 26px, 1160px)
    }
    .hero {
        padding:78px 0 62px
    }
    .hero h1 {
        font-size:49px
    }
    .products, .applications, .feature-grid, .spec-strip, .form-grid {
        grid-template-columns:1fr
    }
    .field.full {
        grid-column:auto
    }
    .product-card {
        min-height:auto
    }
    .section {
        padding:68px 0
    }
    .footer-grid {
        flex-direction:column;
        align-items:flex-start
    }
    .page-icon img {
        height:220px
    }
}
/* v18.1 - conteúdo institucional e serviços herdados da v17 */
.service-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px
}
.service-card {
    padding:25px;
    border:1px solid #dce8e9;
    border-radius:18px;
    background:#fff;
    display:flex;
    flex-direction:column
}
.service-card h3 {
    margin:0 0 9px;
    font-size:21px
}
.service-card p {
    color:#64797d;
    margin:0 0 18px
}
.service-card .more {
    margin-top:auto
}
.about-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:52px;
    align-items:start
}
.about-copy p {
    color:var(--muted);
    font-size:17px
}
.values {
    display:grid;
    gap:14px
}
.value {
    padding:20px;
    border:1px solid var(--line);
    border-radius:15px;
    background:rgba(255, 255, 255, .04)
}
.value h3 {
    margin:0 0 6px
}
.value p {
    margin:0;
    color:var(--muted)
}
.legacy-note {
    padding:18px;
    border-radius:14px;
    background:#eaf5f5;
    color:#35575d
}
.detail-list {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px
}
.detail-item {
    padding:22px;
    border:1px solid #dce8e9;
    border-radius:16px;
    background:#fff
}
.detail-item h3 {
    margin:0 0 8px
}
.detail-item p, .detail-item li {
    color:#64797d
}
.detail-item ul {
    padding-left:20px;
    margin-bottom:0
}
@media(max-width:900px) {
    .service-grid {
        grid-template-columns:1fr 1fr
    }
    .about-grid {
        grid-template-columns:1fr
    }
}
@media(max-width:620px) {
    .service-grid, .detail-list {
        grid-template-columns:1fr
    }
}
/* =========================================================
Go2Live 3.0 — conteúdo legado adaptado ao visual 2.0
========================================================= */
.logo-image img {
    display:block;
    width:auto;
    height:46px;
    max-width:210px;
    object-fit:contain
}
.hero-photo {
    position:relative;
    overflow:hidden
}
.hero-photo-bg {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(5, 12, 24, .98) 0%, rgba(5, 12, 24, .92) 45%, rgba(5, 12, 24, .75) 100%), url('../images/legacy-content/mbr-2.jpg') center/cover no-repeat;
    opacity:.38;
    pointer-events:none
}
.hero-photo .container {
    position:relative;
    z-index:1
}
.media-card {
    padding:18px
}
.hero-media {
    width:100%;
    height:310px;
    display:block;
    object-fit:cover;
    border-radius:16px;
    border:1px solid rgba(255, 255, 255, .08);
    margin:16px 0
}
.media-card-caption {
    display:grid;
    gap:5px
}
.media-card-caption small {
    color:var(--muted)
}
.photo-art {
    height:210px;
    padding:0;
    overflow:hidden;
    background:#07101f
}
.photo-art img {
    width:100%;
    height:100%;
    object-fit:cover
}
.legacy-solutions .product-card {
    overflow:hidden
}
.split-feature {
    #display:grid;
    #grid-template-columns:1.05fr .95fr;
    gap:64px;
    align-items:center
}
.split-feature.reverse {
    grid-template-columns:.95fr 1.05fr
}
.feature-media {
    border-radius:24px;
    #overflow:hidden;
    background:#081427;
    #border:1px solid var(--line);
    #box-shadow:var(--shadow)
}
.feature-media img {
    display:block;
    width:100%;
    height:460px;
    object-fit:cover
}
.tall-media img {
    height:312px
}
.feature-list {
    display:grid;
    gap:12px;
    margin:28px 0
}
.feature-list>div {
    display:grid;
    gap:4px;
    padding:14px 16px;
    border:1px solid var(--line);
    border-radius:14px;
    background:rgba(255, 255, 255, .025)
}
.feature-list span {
    color:var(--muted);
    font-size:.94rem;
    line-height:1.55
}
.showcase-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px
}
.showcase-card {
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:20px;
    background:var(--panel);
    box-shadow:var(--shadow)
}
.showcase-card img {
    display:block;
    width:100%;
    height:205px;
    #object-fit:cover;
    background:#fff
}
.showcase-card>div {
    padding:20px
}
.showcase-card h3 {
    margin:0 0 8px
}
.showcase-card p {
    margin:0;
    color:var(--muted);
    line-height:1.6
}
.footer-contact {
    padding-top:16px;
    text-align:center;
    color:var(--muted);
    font-size:.9rem;
    border-top:1px solid var(--line)
}
@media(max-width:980px) {
    .split-feature, .split-feature.reverse {
        grid-template-columns:1fr;
        gap:32px
    }
    .showcase-grid {
        grid-template-columns:repeat(2, 1fr)
    }
    .feature-media img, .tall-media img {
        height:auto;
        max-height:520px
    }
    .logo-image img {
        height:40px
    }
}
@media(max-width:620px) {
    .showcase-grid {
        grid-template-columns:1fr
    }
    .hero-media {
        height:220px
    }
    .photo-art {
        height:190px
    }
    .logo-image img {
        height:34px;
        max-width:160px
    }
    .page-hero p {
        font-size: 19px;
        color: var(--muted);
        width: 50%;
    }
     .page-icon img {
         height: 154px;
     }
}