/* ===== VARIAVEIS ===== */
:root {
    --bg: #06080d;
    --surface: #0b0e15;
    --surface2: #10141d;
    --gold: #c5a059;
    --gold-light: #d4b571;
    --gold-dim: rgba(197, 160, 89, 0.12);
    --cream: #ede8df;
    --text: #c8c3b8;
    --muted: #9a9490;
    --border: rgba(197, 160, 89, 0.15);
    --border-hard: rgba(197, 160, 89, 0.3);
    --green: #2ecc71;
    --red: #c0392b;
    --white: #f0ece4;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'EB Garamond', Georgia, serif;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* ===== SKIP NAV (Acessibilidade) ===== */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    background: var(--gold);
    color: var(--bg);
    padding: 12px 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s;
}

.skip-nav:focus {
    top: 0;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.display {
    font-family: 'Playfair Display', serif;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
}

.gold {
    color: var(--gold);
}

.cream {
    color: var(--cream);
}

/* ===== NAVEGACAO ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 120px;
    background: rgba(6, 8, 13, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo-mark {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: -15px;
}

.nav-logo-mark img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-wordmark {
    font-family: 'Old Standard TT', serif;
    font-weight: 700;
    font-size: 1.55rem;
    color: #b0b0b0;
    letter-spacing: 0px;
    line-height: 0.95;
    text-transform: uppercase;
}

.nav-wordmark small {
    display: block;
    font-family: 'Noto Serif', serif;
    font-size: 0.55rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    font-weight: 400;
    text-transform: uppercase;
    font-style: italic;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 8px 22px;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    font-size: 0.68rem !important;
    transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--bg) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: 0.3s;
}

/* ===== TICKER ===== */
.ticker-bar {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #000;
    overflow: hidden;
    white-space: nowrap;
    padding: 7px 0;
}

.ticker-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
}

.ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: tickerScroll 55s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: #888;
    border-right: 1px solid #1a1a1a;
}

.ticker-item .label {
    color: var(--muted);
}

.ticker-item .val {
    color: var(--white);
    font-weight: 500;
}

.ticker-item .up {
    color: var(--green);
}

.ticker-item .down {
    color: var(--red);
}

.ticker-item .highlight {
    color: var(--gold);
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 160px 5% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 5;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    flex: 1;
}

.hero-flash-widget {
    flex: 0 0 420px;
    max-width: 420px;
    width: 100%;
}

@media (max-width: 1200px) {
    .hero-flash-widget {
        max-width: 550px;
    }
}

@media (max-width: 640px) {
    .hero-flash-widget {
        max-width: 100%;
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(6, 8, 13, 0) 0%, var(--bg) 100%);
    pointer-events: none;
}

/* ===== MERCATOR GRID (Cartographic Overlay) ===== */
.mercator-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(197, 160, 89, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.06) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
}

@media (max-width: 640px) {
    .mercator-grid {
        background-size: 40px 40px;
        opacity: 0.6;
    }
}


.hero-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 32px;
}

.gold-gradient {
    background: linear-gradient(135deg, #f1d592 0%, var(--gold) 50%, #a4823d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 580px;
    margin-bottom: 52px;
    line-height: 1.8;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
    padding: 14px 36px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    padding: 13px 36px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--border-hard);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.argus-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.argus-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 52px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    border-left: 1px solid var(--gold);
    padding-left: 24px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--border-hard);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
    font-style: italic;
}

/* (Platform cards removed — not used in current layout) */

/* ===== METHODOLOGY ===== */
.methodology {
    padding: 110px 5%;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.meth-inner {
    max-width: 1100px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.meth-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.2;
}

.meth-text p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 22px;
}

.meth-text .pullquote {
    border-left: 2px solid var(--gold);
    padding: 20px 28px;
    margin: 36px 0;
    background: var(--gold-dim);
    font-style: italic;
    font-size: 1.08rem;
    color: var(--cream);
    line-height: 1.7;
}


/* (Track record section removed — not used in current layout) */

/* ===== SAMPLE SECTION ===== */
.sample-section {
    text-align: center;
    padding: 72px 5%;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.sample-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 16px;
}

.sample-desc {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto 36px;
    font-style: italic;
    line-height: 1.8;
}

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.comparison-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}

.comparison-table tr:hover td {
    background: var(--surface);
}

.comparison-table .row-label {
    color: var(--gold);
    font-weight: 500;
    border-right: 1px solid var(--border);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
}

/* ===== LEADERSHIP ===== */
.leadership {
    padding: 110px 5%;
    background: var(--bg);
}

.leader-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.leader-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    overflow: hidden;
    margin: 0 auto 56px;
    max-width: 900px;
}

.leader-photo-col {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 36px 40px;
    border-bottom: 1px solid var(--border);
}

.leader-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid var(--border-hard);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--surface2);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
}

.leader-role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    text-align: center;
}

.leader-info {
    padding: 52px 60px;
    text-align: left;
}

.leader-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 6px;
}

.leader-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 28px;
}

.leader-bio {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 32px;
}

.leader-works {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(197, 160, 89, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 4px;
}

.book-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 2px;
}

.book-link:hover {
    background: var(--gold);
    color: var(--bg);
}

.bio-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 12px;
    padding: 6px 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 2px;
    background: rgba(197, 160, 89, 0.05);
}

.press-link:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold);
}

.leader-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.credential-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border: 1px solid var(--border);
    color: var(--muted);
}

/* ===== ESG STRIP ===== */
.esg-strip {
    background: #040609;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 5%;
    /* Even more discrete height */
}

.esg-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.esg-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.esg-label::before,
.esg-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.esg-shields {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    /* Increased gap for better breathing */
    justify-content: center;
    align-items: center;
}

.esg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    text-align: center;
}

.esg-shield-wrap {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esg-shield-fallback {
    width: 100px;
    height: 100px;
    border: 1px solid var(--border-hard);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.75rem;
}

.esg-item-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.esg-item-desc {
    display: none;
    /* Discrete look */
}

.esg-item-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -2px;
}

.esg-img-contain {
    height: 70px;
    /* Increased fixed height for symmetry */
    width: auto;
    max-width: 200px;
    /* Increased max-width */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.esg-item:hover .esg-img-contain {
    transform: scale(1.05);
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 5%;
    background: #030508;
    border-top: 1px solid var(--border);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-legal {
    font-size: 0.75rem;
    color: #68635d;
    text-align: center;
    line-height: 1.6;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--surface);
    border: 1px solid var(--border-hard);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 52px 48px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 1.2rem;
    color: var(--muted);
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-eyebrow {
    font-family: 'Noto Serif', serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
    font-style: italic;
}

.modal-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 6px;
}

.modal-box p.modal-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 36px;
    font-style: italic;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit:hover {
    background: var(--gold-light);
}

.form-success {
    text-align: center;
    padding: 36px 0;
    display: none;
}

.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--green);
    margin-bottom: 10px;
    font-weight: 400;
}

.form-success p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
    margin-left: 15px;
    font-family: 'IBM Plex Mono', monospace;
    z-index: 1001;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    padding: 4px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border-radius: 2px;
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lang-code {
    font-weight: 600;
}

.lang-arrow {
    font-size: 0.55rem;
    transition: transform 0.2s;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--surface);
    border: 1px solid var(--border-hard);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.language-selector:hover .lang-dropdown,
.lang-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-selector:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-option {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    font-size: 0.7rem;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--gold-dim);
    color: var(--gold);
    padding-left: 18px;
}

.lang-option.active {
    color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
    position: relative;
}

.lang-option.active::before {
    content: '>';
    position: absolute;
    left: 6px;
    color: var(--gold);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1100px) {

    .platform-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .meth-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .leader-photo-col {
        padding: 36px;
        flex-direction: row;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .esg-shields {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 160px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 120px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 120px);
        background: rgba(6, 8, 13, 0.99);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s;
        display: flex;
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .ticker-inner {
        animation-duration: 120s;
    }

    .ticker-item {
        padding: 0 20px;
        font-size: 0.65rem;
    }

    .platform-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        padding-left: 16px;
    }

    .stat-num {
        font-size: 2rem;
    }

    .platform-card,
    .track-card,
    .leader-info,
    .product-card {
        padding: 30px 24px;
    }

    .modal-box {
        padding: 40px 24px;
    }

    .language-selector {
        margin: 15px 0 5px;
        width: 100%;
    }

    .lang-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
}

/* (Dead CSS removed — history-table, argus-grid, chart-tooltip-id, platform-precise styles were not used) */

/* ===== SAMPLE SECTION ===== */
.sample {
    text-align: center;
    padding: 72px 5%;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.sample-content {
    max-width: 600px;
    margin: 0 auto;
}

.sample-content .section-eyebrow {
    justify-content: center;
}

.sample-content .section-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.sample-content p {
    color: var(--muted);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 36px;
}


/* ===== TABLE WRAPPER ===== */
.table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

/* ===== HIGHLIGHT CELL ===== */
.comparison-table td.highlight {
    color: var(--gold);
    font-weight: 500;
}

.comparison-table th.highlight {
    color: var(--gold-light);
}


.ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: tickerScroll 55s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: #888;
    border-right: 1px solid #1a1a1a;
}

.ticker-item .label {
    color: var(--muted);
}

.ticker-item .val {
    color: var(--white);
    font-weight: 500;
}

.ticker-item .up {
    color: var(--green);
}

.ticker-item .down {
    color: var(--red);
}

.ticker-highlight {
    color: var(--gold);
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== TRACK RECORD ===== */
.track {
    padding: 120px 5%;
    background: var(--bg);
    position: relative;
}

.track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.track-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px 36px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    opacity: 0;
    transition: opacity 0.3s;
}

.track-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-3px);
}

.track-card:hover::before {
    opacity: 1;
}

.track-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.track-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.4;
}

.track-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 24px;
}

.track-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.track-metric-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

.track-metric-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
}

/* ===== SUBTLE GOLD BACKGROUND ACCENTS ===== */
body {
    background-image:
        radial-gradient(ellipse 800px 600px at 15% 10%, rgba(191, 155, 48, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 85% 60%, rgba(191, 155, 48, 0.025) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 50% 90%, rgba(191, 155, 48, 0.02) 0%, transparent 70%);
}

/* Gold line accent on hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
}


/* Gold shimmer on section headers */
.section-title {
    background: linear-gradient(135deg, var(--white) 40%, var(--gold-light) 60%, var(--white) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Adjust hero padding for ticker */
.hero {
    padding-top: 180px !important;
}

/* ===== HERO ENHANCEMENTS ===== */
.hero-logo-mark {
    margin-bottom: 32px;
}

.hero-logo-mark img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(197, 160, 89, 0.3));
    animation: heroPulse 3s ease-in-out infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 24px rgba(197, 160, 89, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(197, 160, 89, 0.5));
    }
}

.hero-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    animation: scanMove 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scanMove {
    0% {
        top: 30%;
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        top: 80%;
        opacity: 0;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(197, 160, 89, 0.3), transparent),
        radial-gradient(1px 1px at 30% 60%, rgba(197, 160, 89, 0.2), transparent),
        radial-gradient(1px 1px at 70% 30%, rgba(197, 160, 89, 0.15), transparent),
        radial-gradient(1px 1px at 90% 70%, rgba(197, 160, 89, 0.25), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(197, 160, 89, 0.1), transparent);
    pointer-events: none;
}

.btn-terminal {
    font-size: 0.82rem !important;
    padding: 16px 36px !important;
    letter-spacing: 3px !important;
    position: relative;
    overflow: hidden;
}

.btn-terminal::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.btn-icon {
    margin-right: 8px;
    font-size: 0.9em;
}

.btn-report {
    font-size: 0.72rem !important;
    padding: 14px 28px !important;
}

/* ===== BLOCO 2: PARADIGM ===== */
.paradigm {
    padding: 110px 5%;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.paradigm-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.paradigm-accent {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.paradigm-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.35;
}

.paradigm-inner h2 em {
    color: var(--gold);
    font-style: italic;
}

.paradigm-inner>p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 40px;
}

.paradigm-inner>p strong {
    color: var(--cream);
}

.paradigm-highlight {
    background: var(--gold-dim);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 32px 36px;
    text-align: left;
    position: relative;
}

.paradigm-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.paradigm-label {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.paradigm-highlight p {
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.8;
    margin: 0;
}

.paradigm-highlight p strong {
    color: var(--cream);
}

.final-statement {
    max-width: 650px;
    margin: 48px auto 0;
    text-align: center;
}

.final-statement .paradigm-highlight {
    padding: 40px;
    border: 1px solid var(--gold);
    background: linear-gradient(to right, var(--gold-dim), transparent);
}

.final-statement .paradigm-highlight::before {
    display: none;
    /* remove default side bar */
}

.final-statement p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.final-statement p strong {
    color: inherit;
}

/* ===== BLOCO 3: ARGUS SUITE ===== */
.argus-suite {
    padding: 120px 5%;
    background: var(--bg);
    position: relative;
}

.argus-suite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* ===== PADRONIZAÇÃO DOS CARDS ECOSSISTEMA ===== */
.suite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    /* todos os cards com mesma altura */
    max-width: 1200px;
    margin: 0 auto;
}

/* Cada card individual */
.suite-card {
    display: flex;
    flex-direction: column;
    height: auto;
    /* remove altura fixa anterior */
    min-height: 420px;
    /* altura mínima igual para todos */
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    /* ajuste conforme seu design */
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Garantir que todos os cards tenham o mesmo comportamento */
.suite-card:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-3px);
}

/* Container da logo */
.suite-icon {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

/* Todas as logos com o mesmo tamanho */
.argus-logo {
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.suite-card:hover .argus-logo {
    transform: scale(1.05);
}

/* Cabeçalho do card */
.suite-card-header {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    z-index: 1;
}

.suite-tag {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.suite-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
    color: var(--white);
    font-weight: 500;
}

/* Texto descritivo */
.suite-card p {
    flex-grow: 1;
    /* ocupa espaço restante para igualar alturas */
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 1.5rem;
    z-index: 1;
}

.suite-card p strong {
    color: var(--cream);
}

/* Links de PDF e relatório */
.suite-pdf-link,
.suite-report-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-family: 'IBM Plex Mono', monospace;
    color: var(--gold);
    text-decoration: none;
    margin: 0.25rem auto !important;
    opacity: 0.8;
    transition: opacity 0.2s;
    width: fit-content;
    z-index: 1;
}

.suite-pdf-link:hover,
.suite-report-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.suite-pdf-link svg,
.suite-report-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
}

/* Linha decorativa */
.suite-line {
    margin-top: auto;
    /* empurra para baixo */
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    position: absolute;
    bottom: 0;
    left: 36px;
    right: 36px;
}

/* ===== CARD ESPECIAL ARGUS IDEOLÓGICO ===== */
#card-ideologico .argus-logo {
    height: 150px !important;
    width: auto;
    object-fit: contain;
}

.card-ideologico {
    opacity: 0.9;
    border: 1px dashed var(--gold);
    position: relative;
    overflow: hidden;
}

.card-ideologico .coming-soon-badge {
    position: absolute;
    top: 8px;
    right: -35px;
    background: var(--gold);
    color: #06080d;
    padding: 0.2rem 2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: bold;
    transform: rotate(45deg);
    width: 140px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-ideologico .suite-tag {
    color: var(--gold);
    opacity: 0.8;
}

/* ===== CORREÇÃO PARA LOGO DO IPAP (FUNDO BRANCO) ===== */
/* Solução paliativa - o ideal é substituir a imagem */
#card-ipap .argus-logo {
    mix-blend-mode: multiply;
}

/* ===== BLOCO 4: LEAD CAPTURE ===== */
.lead-capture {
    padding: 120px 5%;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.lead-capture::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lead-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lead-visual {
    display: none;
}

.dashboard-mockup {
    width: 380px;
    background: #0d1117;
    border: 1px solid var(--border-hard);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(197, 160, 89, 0.4);
    position: relative;
    font-family: 'IBM Plex Mono', monospace;
    overflow: hidden;
    transform: rotateY(-3deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(0deg);
}

.dash-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #047857);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dash-header {
    background: rgba(22, 27, 34, 0.8);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.dash-date {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.dash-body {
    display: flex;
    height: 320px;
}

.dash-sidebar {
    width: 140px;
    border-right: 1px solid var(--border);
    padding: 20px 0;
    background: rgba(13, 17, 23, 0.5);
}

.dash-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dash-sidebar li {
    padding: 12px 16px;
    font-size: 0.65rem;
    color: var(--muted);
    border-left: 2px solid transparent;
    cursor: default;
    transition: all 0.2s;
}

.dash-sidebar li.active {
    color: var(--white);
    border-left-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.dash-main {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-top-metrics {
    display: flex;
    justify-content: space-between;
}

.dash-metric-sm {
    display: flex;
    flex-direction: column;
    font-size: 0.55rem;
    color: var(--muted);
    gap: 4px;
}

.dash-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.dash-bar {
    flex: 1;
    background: rgba(197, 160, 89, 0.3);
    border-top: 2px solid var(--gold);
    transition: height 1s ease;
}

.dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.dash-metric {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-label {
    display: block;
    font-size: 0.55rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.dash-value {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 500;
}

.lead-form-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lead-form-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.35;
    max-width: 700px;
}

.lead-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 24px;
    max-width: 750px;
}

.lead-cta-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 28px;
}

.lead-form .form-group {
    margin-bottom: 14px;
}

.lead-form .form-group input {
    width: 100%;
    padding: 13px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.lead-form .form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.lead-form .form-group input::placeholder {
    color: #555;
    font-style: italic;
}

.btn-lead-submit {
    width: 100%;
    padding: 16px;
    font-size: 0.78rem !important;
    letter-spacing: 3px !important;
    margin-top: 8px;
}

/* ===== BLOCO 5: AUTHORITY ===== */
.authority {
    padding: 60px 5%;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.authority-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.authority-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    font-style: italic;
}

.authority-text strong {
    color: var(--gold);
    font-style: normal;
}

/* ===== RESPONSIVE: NEW BLOCKS ===== */
@media (max-width: 1100px) {
    .suite-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .dashboard-mockup {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .suite-grid {
        grid-template-columns: 1fr;
    }

    .paradigm {
        padding: 80px 5%;
    }

    .argus-suite {
        padding: 80px 5%;
    }

    .lead-capture {
        padding: 80px 5%;
    }

    .dashboard-mockup {
        width: 280px;
    }

    .report-cover {
        min-height: 340px;
        padding: 36px 24px;
    }
}

@media (max-width: 640px) {
    .suite-card {
        padding: 32px 24px;
        min-height: auto;
    }

    .argus-logo {
        height: 130px;
    }

    .lead-form-col h2 {
        font-size: 1.3rem;
    }
}

/* ===== CLASSES PARA SUBSTITUIR ESTILOS INLINE ===== */
.justify-flex-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.esg-img-contain {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
}

.footer-brand {
    margin-bottom: 2px;
    font-family: 'Old Standard TT', serif;
    font-size: 1.1rem;
    color: #b0b0b0;
    letter-spacing: 0px;
    line-height: 0.95;
    text-transform: uppercase;
}

.footer-tagline {
    margin-bottom: 12px;
    font-family: 'Noto Serif', serif;
    font-size: 0.5rem;
    color: var(--gold);
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-link {
    margin: 0 12px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-disclaimer {
    max-width: 700px;
    margin: 8px auto 0;
    font-size: 0.68rem;
    line-height: 1.6;
}

.honeypot {
    display: none;
}

/* ===== LINKEDIN LINKS ===== */
.leader-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 9px 18px;
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    background: rgba(197, 160, 89, 0.04);
}

.leader-linkedin:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

.footer-link-linkedin {
    color: var(--gold) !important;
    opacity: 0.8;
}

.footer-link-linkedin:hover {
    opacity: 1;
}

/* ===== SUITE PDF LINK ===== */
.suite-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 9px 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(197, 160, 89, 0.04);
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.suite-pdf-link:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateX(3px);
}

.suite-pdf-link svg {
    flex-shrink: 0;
    color: inherit;
}

/* ===== SUITE REPORT LINK (relatório semanal) ===== */
.suite-report-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 16px;
    border: 1px dashed rgba(197, 160, 89, 0.35);
    background: transparent;
    color: rgba(197, 160, 89, 0.7);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.suite-report-link:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: var(--gold);
    border-style: solid;
    color: var(--gold);
    transform: translateX(3px);
}

.suite-report-link svg {
    flex-shrink: 0;
    color: inherit;
}

/* ===== FORM SUCCESS DOWNLOADS ===== */
.success-downloads {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.success-dl-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.06);
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.success-dl-link:hover {
    background: rgba(197, 160, 89, 0.14);
    border-color: var(--gold);
    transform: translateX(4px);
}

.success-dl-link svg {
    flex-shrink: 0;
}

/* ===== MODAL ACESSO INSTITUCIONAL ===== */
#modalAccess {
    display: none;
}

#modalAccess.active {
    display: flex;
}

.access-direct-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.access-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    background: rgba(197, 160, 89, 0.05);
    color: var(--gold);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.access-contact-btn:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--gold);
}

.access-whatsapp {
    border-color: rgba(37, 211, 102, 0.35);
    color: #25d366;
}

.access-whatsapp:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25d366;
}

.access-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: rgba(197, 160, 89, 0.4);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.access-divider::before,
.access-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(197, 160, 89, 0.2);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, #09100f 0%, #0a1208 50%, #07100d 100%);
    border-top: 1px solid rgba(46, 204, 113, 0.2);
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
    padding: 22px 5%;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 60px,
            rgba(46, 204, 113, 0.015) 60px,
            rgba(46, 204, 113, 0.015) 61px);
    pointer-events: none;
}

.promo-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.promo-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promo-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25);
    padding: 3px 10px;
    width: fit-content;
}

.promo-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
}

.promo-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: rgba(197, 160, 89, 0.7);
    letter-spacing: 0.5px;
}

.promo-sub del {
    color: rgba(197, 160, 89, 0.4);
    text-decoration-color: rgba(197, 160, 89, 0.4);
}

.promo-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.promo-modules {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.promo-mod {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 1px;
    color: rgba(197, 160, 89, 0.65);
}

.promo-sep {
    color: rgba(197, 160, 89, 0.25);
}

.promo-cta {
    display: inline-block;
    padding: 10px 28px;
    background: #2ecc71;
    color: #04090a;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.promo-cta:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .promo-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-right {
        align-items: flex-start;
    }
}

/* ===== LEAD PRICING BADGE ===== */
.lead-pricing-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-left: 3px solid var(--gold);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.lpb-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.55);
}

.lpb-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gold);
    line-height: 1;
}

.lpb-promo {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    padding: 4px 10px;
    animation: pulseGreen 2.5s ease-in-out infinite;
}

@keyframes pulseGreen {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ===== ÚLTIMO ALERTA ESTRATÉGICO (Flash Alert Widget) ===== */
.hero-flash-widget .flash-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 50, 50, 0.1);
    border: 1px solid rgba(220, 50, 50, 0.4);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-flash-widget .flash-card {
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-left: 3px solid var(--gold);
    padding: 24px;
    backdrop-filter: blur(10px);
}

.hero-flash-widget .flash-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.hero-flash-widget .flash-excerpt {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.flash-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc3232;
    animation: flashPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(220, 50, 50, 0.6);
}

@keyframes flashPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.85);
    }
}

.flash-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #dc3232;
    text-transform: uppercase;
}

.flash-carousel {
    position: relative;
    width: 100%;
}

.flash-slide {
    display: none;
    animation: fadeInSlide 0.6s ease-out forwards;
}

.flash-slide.active {
    display: block;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flash-card {
    background: rgba(11, 14, 21, 0.6);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 32px 36px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}

.flash-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
}

.flash-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.flash-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.flash-module {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.flash-classification {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(197, 160, 89, 0.6);
    padding: 2px 10px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 3px;
    text-transform: uppercase;
}

.flash-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 14px;
}

.flash-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.flash-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.flash-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem !important;
    padding: 10px 24px !important;
}

.flash-alert .btn-ghost {
    font-size: 0.7rem;
    padding: 10px 20px;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .flash-alert {
        padding: 40px 5%;
    }

    .flash-card {
        padding: 24px 20px;
    }

    .flash-title {
        font-size: 1.1rem;
    }

    .flash-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== GRAIN TEXTURE (Film Noise Overlay) ===== */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
    background-repeat: repeat;
    opacity: 0.04;
    z-index: 9999;
}

/* AJUSTES FORÇADOS - CARDS ECOSSISTEMA */
section.argus-suite .suite-icon {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

section.argus-suite .suite-icon img.argus-logo {
    height: 180px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

/* Forçar ideológico */
section.argus-suite #card-ideologico .suite-icon img.argus-logo {
    height: 180px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Aproximar título */
section.argus-suite .suite-card-header {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

/* Reduzir altura do card */
section.argus-suite .suite-card {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    min-height: unset !important;
}

/* Ajuste badge "EM BREVE" */
section.argus-suite .card-ideologico .coming-soon-badge {
    position: absolute !important;
    top: 5px !important;
    right: -30px !important;
}