:root {
    --brand-blue: #090909;
    --brand-orange: #FA501C;
    --brand-orange-hover: #D63F14;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --text-light-gray: #94A3B8;
    --bg-white: #f8eee2;

    --bg-gradient: linear-gradient(
        135deg,
        #abc8de 0%,
        #c7c9d8 16.7%,
        #e5cccf 33.3%,
        #ffd3c7 50%,
        #ffdbc2 66.7%,
        #ffe4c0 83.3%,
        #ffedc3 100%
    );

    --bg-light: #f5f1df;
    --border-subtle: #e69138;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    background: var(--bg-white);
    color: var(--text-dark);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html[data-theme="light"] body {
    background: var(--bg-gradient);
    background-attachment: fixed;
}
/* ==========================================================
   Theme Toggle Switch
   ========================================================== */
.theme-toggle{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-right:8px;
}

.theme-label{
    font-size:.60rem;
    font-weight:500;
    line-height:1;
    margin-bottom:3px;
    transform:translateY(-3px);
    white-space:nowrap;
    transition:color .25s ease;
}

/* Cor do texto conforme o tema */
html[data-theme="light"] .theme-label{
    color:#1F2937;
}

html[data-theme="dark"] .theme-label{
    color:#FFFFFF;
}

/* ==========================================================
   Switch
   ========================================================== */
.toggle-switch{
    position:relative;
    width:38px;
    height:20px;
    cursor:pointer;
    user-select:none;
    flex-shrink:0;
}

.toggle-switch input{
    display:none;
}

/* Estado padrão (Light) */
.toggle-switch .slider{
    position:absolute;
    inset:0;
    background:#D7DBE0;
    border-radius:20px;
    transition:all .25s ease;
}

.toggle-switch .slider::before{
    content:"";
    position:absolute;
    width:16px;
    height:16px;
    left:2px;
    top:2px;
    border-radius:50%;
    background:#1F2937;
    transition:all .25s ease;
    box-shadow:none;
}

/* Estado marcado (Dark) */
.toggle-switch input:checked + .slider{
    background:#444444;
}

.toggle-switch input:checked + .slider::before{
    transform:translateX(18px);
    background:#FFD54A;
    box-shadow:0 0 4px rgba(255,213,74,.60);
}

/* Hover */
.toggle-switch:hover .slider{
    filter:brightness(1.08);
}
#capabilities {
    scroll-margin-top: 100px;
}
#network-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5% 0 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 9999;
    transition: box-shadow 0.3s ease;
}
.navbar.navbar-shadow { box-shadow: 0 4px 12px rgba(0,0,0,0.04); }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-decoration: none;
}
.company-logo { height: 48px; width: auto; display: block;margin-left: 25px;}
.company-ositron { height: 24px; width: auto; display: block; }

.agent-popup-container {
    position: relative;
    display: inline-block;
}
.agent-popup {
    position: absolute;
    left: 100%;
    top: 51%;
    font-size: 11px;
    transform: translateY(-50%);
    width: 100px;
    padding: 6px 10px;
    background: rgba(20, 20, 20, 0.95);
    color: #fff;
    border: 1px solid #fd7700;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .4);
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease;
    z-index: 9999;
}
.agent-popup-container:hover .agent-popup {
    visibility: visible;
    opacity: 1;
}
.agent-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-left: 5px;
}

#menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}
#menu a {
    color: var(--brand-blue);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}
#menu a:hover { color: var(--brand-orange); }

.has-dropdown .dropdown-toggle:hover,
.has-dropdown .dropdown-toggle:hover .caret {
    color: #006640 !important;
}

/* ==========================================================
   DROPDOWN — Serviços
   Desktop (>992px): abre no hover. Mobile (<=992px): abre no
   toque, via classe .open adicionada por dropdown.js (regras
   no responsive.css).
   ========================================================== */
.has-dropdown { position: relative; }

.has-dropdown .dropdown-toggle {
    background: linear-gradient(
        90deg,
        #8a6808 0%,
        #b8890f 50%,
        #8a6808 100%
    );
    color: #006640 !important;
    border: 1px solid #d6b54a;
    border-radius: 4px;
    display: inline-flex;
    padding: 8px;
    align-items: center;
    gap: 6px;
}

.has-dropdown .caret {
    transition: transform 0.25s ease;
    flex: 0 0 auto;
}

/* Submenu: oculto por padrão (desktop) */
.dropdown-menu {
    list-style: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 264px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    padding: 8px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 10000;
}
/* Ponte invisível entre o item e o submenu, para o hover não
   "cair" no vão de 14px e fechar o menu ao mover o mouse. */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 7px;
    font-size: 0.9rem !important;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu a:hover {
    background: rgba(221, 119, 48, 0.10);
    color: var(--brand-orange);
}
.dropdown-menu .dropdown-more {
    font-style: italic;
    opacity: 0.85;
}

/* Abertura no hover (desktop) e via foco de teclado */
@media (min-width: 993px) {
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .has-dropdown:hover .caret,
    .has-dropdown:focus-within .caret {
        transform: rotate(180deg);
    }
}

.btn-primary {
    background: linear-gradient(
        90deg,
        #8a6808 0%,
        #b8890f 50%,
        #8a6808 100%
    ) !important;
    color: #006640 !important;
    padding: 10px 22px;
    border-radius: 6px;
    border: 1px solid #d6b54a;
    box-shadow:
        0 2px 5px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.25);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.btn-primary:hover {
    background: linear-gradient(
        90deg,
        #9a760b 0%,
        #c59a22 50%,
        #9a760b 100%
    ) !important;
    color: #006640 !important;
    box-shadow:
        0 4px 10px rgba(170,130,20,.40),
        inset 0 1px 0 rgba(255,255,255,.30);
    transform: translateY(-1px);
}

#menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer;
    color: var(--brand-blue);
}

.user-ip {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
    pointer-events: none;
    transition: color 0.3s ease;
}

.timeline {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    max-width: 900px;
}

.tl-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 18px 0;
    border-left: 2px solid rgba(214,163,32,.25);
    padding-left: 28px;
    position: relative;
}

.tl-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d6a320;
    box-shadow: 0 0 12px rgba(214,163,32,.45);
}

.tl-year {
    flex: 0 0 120px;
    font-size: 1rem;
    font-weight: 700;
    color: #d6a320;
    white-space: nowrap;
}

.tl-label {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5b6f89;
}

.tl-item:hover {
    transform: translateX(8px);
    transition: .25s ease;
}

.tl-item:hover .tl-year {
    color: #ff6a2a;
}

.tl-item:hover::before {
    transform: scale(1.4);
    transition: .25s;
}

.tl-now::before {
    background: #2ecc71;
    box-shadow: 0 0 16px rgba(46,204,113,.6);
}

.tl-now .tl-year {
    color: #2ecc71;
}

.tl-year i{
    width:22px;
    margin-right:10px;
    color:#d6a320;
    text-align:center;
    font-size:18px;
}

.tl-now .tl-year i{
    color:#2ecc71;
}

/* -- Hero -- */
.hero {
    margin-top: 0;
    /* 100dvh (não 100vh): no celular, 100vh conta a área atrás da barra
       de endereço e infla a altura, empurrando o conteúdo para o meio e
       abrindo um vão no topo. dvh usa a altura REAL visível. */
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 160px 0 60px; /* aumentado para impedir que bc.png suba acima do menu */
    background: #f5f1df;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 80px; /* maior separação entre o texto e as imagens */
}

.hero-content { 
    max-width: 620px; /* reduz um pouco para dar mais espaço ao bloco de imagens à direita */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-headline span { 
    color: var(--brand-orange); 
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--brand-orange); color: #FFF;
    padding: 14px 32px; border-radius: 6px; font-weight: 600;
    text-decoration: none; transition: background 0.3s;
}
.btn-hero-primary:hover { background: var(--brand-orange-hover); }

.btn-hero-secondary {
    background: var(--bg-white); color: var(--text-dark);
    padding: 14px 32px; border-radius: 6px; font-weight: 500;
    text-decoration: none; border: 1px solid var(--text-dark);
    display: flex; align-items: center; gap: 8px;
}
.arrow-down { transform: rotate(-90deg) scaleX(1.5); display: inline-block;}

/* Coluna da Direita (Imagem de Conectividade) */
.hero-visual {
    position: relative;
    width: 640px;
    max-width: 95%;
    margin-top: 95px;
    height: 369px;
    justify-self: center;
    transform: translateX(10%); /* desloca o conjunto (bc.png + world) ~10% para a direita sem quebrar responsividade */
    background-color: var(--bg-light);
    background-image: url('../images/world3.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 16px;
}

.hero-visual-label {
    position: absolute;
    left: 0;
    right: 0;
    top: -68px; /* +20px de distância entre bc.png e world1.png/world2.png */
    margin: 0;
    padding: 0px 20px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000000;
    text-align: center;
    pointer-events: none;
}

section { padding: 80px 5%; max-width: 1400px; margin: 0 auto; scroll-margin-top: 96px; }
.eyebrow { color: var(--brand-orange); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; display: block; margin-bottom: 6px;}
section h2 { font-size: 2.2rem; color: var(--brand-blue); margin-bottom: 20px; }
section p { color: var(--text-gray); }

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 32px; margin-top: 10px;
}

/* Com 4 cards (SBC/VoIP, Data, Cloud, SoD) o desktop cabia 3 colunas,
   deixando o 4o card orfao numa linha sozinho (3+1). A partir de
   1024px fixamos 2 colunas -> distribuicao 2x2 simetrica. Abaixo
   disso o auto-fit acima assume (1 coluna no mobile). */
@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.card {
    background: var(--bg-white); padding: 36px;
    border-radius: 12px; border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.service-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.card h3 { font-size: 1.2rem; color: var(--brand-blue); margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 20px; }
.service-link { color: var(--brand-orange); font-weight: 600; text-decoration: none; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }

.results-section { padding-top: 40px; padding-bottom: 60px; }
.results-wrapper {
    background: var(--bg-light); border-radius: 20px;
    padding: 50px 40px; border: 1px solid var(--border-subtle);
}
.results-header h2 span { color: var(--brand-orange); }
.proof-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; margin-top: 30px;
}
.proof-item { display: flex; align-items: center; gap: 20px; }
.stat-icon { background: rgba(250, 80, 28, 0.1); width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.proof-metric { display: block; font-size: 2.4rem; font-weight: 700; color: var(--brand-blue); margin-bottom: 2px; }
.proof-item p { font-size: 0.9rem; color: var(--text-gray); line-height: 1.4; }

.method-section {
    position: relative;
    width: 65%;
    left: 18%;
    max-width: none;
    padding: 20px 5% 80px;
    overflow: hidden;
    scroll-margin-top: 96px;
}

.container-method {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px;
    align-items: center;
    z-index: 1;
}

.method-video-bg {
    position: absolute;
    top: 20px;
    right: 5%;
    bottom: 80px;
    left: 5%;
    width: 90%;
    height: calc(100% - 100px);
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    border-radius: 16px;
}

.method-text {
    border-radius: 1px; font-size: 0.95rem; background:transparent var(--bg-white);
    padding-left: 24px;
}

.method-text h2 {
    text-shadow: -0.7px 0 white, 0 0.7px white, 0.7px 0 white, 0 -0.7px white;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.method-text p {
    font-weight: 900;
    color: red;
}

html[data-theme="light"] .method-text p {
    font-family: "Goudy Bookletter 1911", sans-serif;
    font-weight:700;
    color: black;
}

html[data-theme="dark"] .method-text p {
    font-family: "Goudy Bookletter 1911", sans-serif;
    font-weight: 700;
    color: red;
}

html[data-theme="dark"] .method-text h2 {
    font-family: "Goudy Bookletter 1911", sans-serif;
    text-shadow: -0.7px 0 black, 0 0.7px black, 0.7px 0 black, 0 -0.7px black;
    font-weight: 700;
}

.contact-form-method {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row.full {
    grid-template-columns: 1fr;
}
.contact-form-method input, .contact-form-method select {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border-subtle);
    border-radius: 8px; font-size: 0.95rem; background: var(--bg-white);
    transition: border-color 0.3s; font-family: inherit;
}
.contact-form-method input:focus, .contact-form-method select:focus {
    outline: none; border-color: var(--brand-orange);
}
.btn-submit-form {
    background: var(--brand-orange); color: #FFF; border: none;
    padding: 14px; border-radius: 8px; font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: background 0.3s; width: 100%;
}
.btn-submit-form:hover { background: var(--brand-orange-hover); }

.journey-section { border-top: 1px solid var(--border-subtle); padding-top: 60px; }

footer {
    background: var(--brand-blue); color: #FFFFFF; padding: 60px 5% 30px; margin-top: 40px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px; max-width: 1400px; margin: 0 auto;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { color: #FFF !important; display: flex; align-items: center; gap: 8px;}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 15px; }
.footer-col h4 { font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--brand-orange); }

/* Coluna Conecte-se: links com ícone SVG + texto */
.social-links li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.social-links li a svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    flex: 0 0 auto;
    transition: fill 0.3s;
}
.social-icons { display: flex; gap: 12px; margin-top: 5px; }
.social-icons a { background: rgba(255,255,255,0.1); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFF; transition: background 0.3s; text-decoration: none; }
.social-icons a:hover { background: rgba(255,255,255,0.2); }
.footer-bottom {
    max-width: 1400px; margin: 20px auto 0; display: flex; justify-content: space-between;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; margin-left: 20px; }
.footer-links a:hover { color: #FFF; }

/* --- Responsividade do Hero no mesmo arquivo --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-visual {
        width: min(640px, 100%);
        height: auto;
        aspect-ratio: 640 / 480;
        margin: 40px auto 0; /* desloca o conjunto (bc.png + world) para baixo, afastando dos botões */
        justify-self: center;
        transform: none;
        background-position: center;
        display: block;
    }
    .hero-visual-label {
        top: -28px;
    }
}

@media (max-width: 768px) {
    .hero { padding: 120px 0 40px; }
}

/* ============================================================ */
/* Revelacao por IntersectionObserver                           */
/* ============================================================ */
section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback anti-tela-branca */
@media (prefers-reduced-motion: no-preference) {
    html.no-js section,
    section { animation: fallbackReveal 0s linear 1.2s forwards; }
}
@keyframes fallbackReveal { to { opacity: 1; transform: none; } }

/* Ancora invisivel de rolagem para #contact */

.anchor-offset { display: block; position: relative; visibility: hidden; }

/* ============================================================ */
/* TEMA DARK                                                    */
/* ============================================================ */
html[data-theme="dark"] {
    --brand-blue: #E8EEF9;
    --text-dark: #E8EEF9;
    --text-gray: #9FB0C9;
    --text-light-gray: #6B7C99;
    --bg-white: #0A1220;
    --bg-light: #111C2E;
    --border-subtle: #1E2E47;
    --shadow-card: 0 4px 12px rgba(0,0,0,0.35);
}

/* Navbar no dark */
html[data-theme="dark"] .navbar {
    background: rgba(10,18,32,0.92);
    border-bottom: 1px solid var(--border-subtle);
}

/* Hero no dark */
html[data-theme="dark"] .hero { background: var(--bg-white); }

/* Imagem do hero no dark */
html[data-theme="dark"] .hero-visual {
    background-color: var(--bg-white);
    background-image: url('../images/world3.png');
}

/* Rotulo BEYOND CONNECTIVITY no dark */
html[data-theme="dark"] .hero-visual-label {
    color: #fd4400;
}

/* Menu Mobile - Tema Dark (correção adicionada) */
html[data-theme="dark"] #menu {
    background: rgba(10, 18, 32, 0.99);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

html[data-theme="dark"] #menu a {
    color: #F5F7FA !important;
    font-weight: 600;
    letter-spacing: .02em;
    text-shadow: none;
    transition: color .25s ease, transform .25s ease;
}

html[data-theme="dark"] #menu a:hover {
    color: var(--brand-orange) !important;
    transform: translateX(4px);
}

html[data-theme="dark"] #menu .has-dropdown .dropdown-toggle:hover,
html[data-theme="dark"] #menu .has-dropdown .dropdown-toggle:hover .caret,
html[data-theme="dark"] #menu .btn-primary:hover {
    color: #006640 !important;
}

html[data-theme="dark"] #menu .btn-primary {
    color: #000000 !important;
}
html[data-theme="dark"] #menu .has-dropdown .dropdown-toggle,
html[data-theme="dark"] #menu .has-dropdown .dropdown-toggle .caret {
    color: #000000 !important;
}

html[data-theme="dark"] #menu .btn-primary:hover {
    transform: none;
}

/* Dropdown no tema dark */
html[data-theme="dark"] .dropdown-menu {
    background: rgba(10, 18, 32, 0.99);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}
html[data-theme="dark"] .dropdown-menu a:hover {
    background: rgba(221, 119, 48, 0.16);
    color: var(--brand-orange) !important;
    transform: none;   /* anula o translateX(4px) herdado do menu dark */
}

/* Canvas de rede no dark */
/* opacity de elemento do canvas no dark REMOVIDA a pedido (100%) */

/* ============================================================ */
/* FOOTER no tema DARK                                           */
/* ============================================================ */
html[data-theme="dark"] footer {
    background: #060B14;
    color: #E8EEF9;
}
html[data-theme="dark"] .footer-logo { color: #E8EEF9 !important; }
html[data-theme="dark"] .footer-brand p { color: rgba(232,238,249,0.7); }
html[data-theme="dark"] .footer-col h4 { color: #E8EEF9; }
html[data-theme="dark"] .footer-col ul li a { color: rgba(232,238,249,0.6); }
html[data-theme="dark"] .footer-col ul li a:hover { color: var(--brand-orange); }
html[data-theme="dark"] .footer-social h4 { color: #E8EEF9; }
html[data-theme="dark"] .footer-bottom { color: rgba(232,238,249,0.45); }
html[data-theme="dark"] .footer-links a { color: rgba(232,238,249,0.45); }
html[data-theme="dark"] .footer-links a:hover { color: #E8EEF9; }
html[data-theme="dark"] footer .footer-grid { border-bottom-color: rgba(255,255,255,0.1); }

/* ==========================================================
   Info dot (?) + Explicacao INLINE (disclosure)
   ==========================================================
   Nao e um popover/janela: o texto se expande DENTRO do fluxo,
   empurrando o conteudo abaixo, e herda a tipografia do
   paragrafo (mesma fonte, tamanho e cor da Trajetoria).
   Sem fundo, sem borda, sem sombra — nao parece um cartao.
   ========================================================== */

/* O botao (?) ao lado do termo */
.info-dot{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:16px;
    height:16px;
    margin-left:4px;
    padding:0;
    vertical-align:super;
    font-size:.62rem;
    font-weight:700;
    line-height:1;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:var(--brand-orange, #FA501C);
    color:#ffffff;
    transition:transform .15s ease, filter .2s ease;
}

.info-dot:hover{ filter:brightness(1.12); transform:scale(1.12); }
.info-dot:focus-visible{ outline:2px solid var(--brand-orange, #FA501C); outline-offset:2px; }

/* Variante com imagem (emoji), caso volte a ser usada */
.info-dot-img{
    background:transparent;
    border-radius:0;
    width:auto;
    height:auto;
    padding:0;
    margin-left:5px;
    vertical-align:-3px;
    line-height:0;
}
.info-dot-img img{
    width:19px;
    height:19px;
    display:block;
    transition:transform .18s ease, filter .2s ease;
}
.info-dot-img:hover img{ transform:scale(1.18) rotate(-6deg); filter:brightness(1.1); }

/* ----------------------------------------------------------
   A explicacao inline
   Herda a tipografia do texto ao redor (font/​size/color do
   .journey-lead). A unica marcacao e uma barra lateral discreta,
   que separa a explicacao do texto sem emoldura-la.
---------------------------------------------------------- */
.info-inline{
    /* fechado: altura zero, sem ocupar espaco */
    display:block;
    overflow:hidden;
    max-height:0;
    opacity:0;
    /* Mesma tipografia do paragrafo da Trajetoria (.journey-lead).
       Nao usamos 'inherit' na cor porque o pai (a <section>) tem
       cor diferente do paragrafo — herdariamos do lugar errado e o
       texto sairia mais claro. Aqui casamos com o proprio paragrafo. */
    font-size:inherit;
    line-height:inherit;
    margin:0;
    padding-left:0;
    border-left:2px solid transparent;
    transition:max-height .32s ease, opacity .25s ease,
               margin .32s ease, padding .32s ease;
}

.info-inline.aberto{
    max-height:1200px;      /* alto o bastante p/ qualquer texto */
    opacity:1;
    margin:18px 0 4px;
    padding-left:18px;
    border-left:2px solid var(--brand-orange, #FA501C);
}

/* Tipografia herdada do paragrafo — sem card, sem fundo */
.info-inline h3{
    margin:0 0 8px;
    font-size:1em;           /* mesmo tamanho do texto ao redor */
    font-weight:700;
    color:var(--brand-orange, #FA501C);
}

.info-inline p{
    margin:0 0 10px;
    font-size:inherit;
    line-height:inherit;
    color:inherit;
}

.info-inline p:last-child{ margin-bottom:0; }

/* Cor do texto: identica a do paragrafo da Trajetoria em cada tema */
.info-inline,
.info-inline p{ color:#9FB0C9; }

html[data-theme="light"] .info-inline,
html[data-theme="light"] .info-inline p{ color:#64748B; }
.info-inline strong{ font-weight:700; }


@media (prefers-reduced-motion: reduce){
    .info-inline{ transition:none; }
    .info-dot:hover{ transform:none; }
}
