/* ==========================================================================
   DESIGN SYSTEM & VARIABLES — Certero (Tema Escuro)
   ========================================================================== */
:root {
    /* Certero Brand Colors — extraídas do site soycerteromx.com */
    --brand-blue: #00D9C0;
    --brand-blue-dark: #00A88F;
    --brand-blue-light: #3DEDD8;
    --brand-red: #FF3B5C;
    --brand-red-dark: #CC2245;
    --brand-red-light: #FF6B85;

    /* Backgrounds — TEMA ESCURO */
    --bg-main: #0A0A0C;
    --bg-alt: #111114;
    --bg-card: #16161A;
    --bg-card-hover: #1D1D22;
    --bg-header: #0B0C0F;

    /* Text Colors — sobre fundo escuro */
    --text-heading: #FAFAFA;
    --text-body: #C7C9D1;
    --text-muted: #8A8D98;
    --text-white: #ffffff;

    /* Borders */
    --border-light: #26262C;
    --border-blue: rgba(0, 217, 192, 0.25);
    --border-red: rgba(255, 59, 92, 0.25);

    /* WhatsApp Green */
    --accent-green: #25d366;
    --accent-green-glow: rgba(37, 211, 102, 0.35);

    /* Glows */
    --blue-glow: 0 4px 20px rgba(0, 217, 192, 0.35);
    --red-glow: 0 4px 20px rgba(255, 59, 92, 0.35);
    --green-glow: 0 4px 18px rgba(37, 211, 102, 0.30);

    /* Layout */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.35);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.55);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-body);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--brand-blue-dark); }

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.max-width-md { max-width: 800px; }
.text-center { text-align: center; }
.block { display: block; }

.accent-text { color: var(--brand-blue); }
.accent-red  { color: var(--brand-red); }

.glowing-highlight {
    background: linear-gradient(120deg, var(--brand-blue), var(--brand-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
}

.section-tag {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--brand-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.section-tag-light {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--brand-blue-light);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.section-tag-accent {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--brand-blue);
    opacity: 0.95;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* ==========================================================================
   PORTAL HEADER — Preto/Escuro como no site oficial da Certero
   ========================================================================== */
.portal-header {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 34px;
    width: auto;
    display: block;
}

.portal-title-fallback {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.portal-badge {
    background-color: rgba(0, 217, 192, 0.14);
    color: var(--brand-blue);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(0, 217, 192, 0.35);
}

.portal-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-date {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    display: none;
}

@media (min-width: 640px) { .nav-date { display: inline; } }

.header-cta-pill {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: #06231F;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: var(--blue-glow);
}

.header-cta-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 217, 192, 0.45);
}

/* ==========================================================================
   MAIN ARTICLE & TRUST LAYOUT
   ========================================================================== */
.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 36px;
    padding-bottom: 56px;
    background-color: var(--bg-alt);
}

@media (min-width: 992px) {
    .main-layout {
        grid-template-columns: 7fr 4fr;
    }
}

.news-article {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--brand-blue);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .news-article { padding: 40px; }
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.73rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
}

.breadcrumbs i { font-size: 0.6rem; }
.breadcrumbs .active { color: var(--brand-blue); }

.article-title {
    font-size: 2.1rem;
    line-height: 1.22;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    color: var(--text-heading);
}

@media (min-width: 768px) {
    .article-title { font-size: 2.65rem; }
}

.article-subtitle {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.55;
    margin-bottom: 28px;
    border-left: 4px solid var(--brand-blue);
    padding-left: 16px;
    background-color: rgba(0, 217, 192, 0.06);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #06231F;
    flex-shrink: 0;
}

.author-name { display: block; font-size: 0.9rem; color: var(--text-heading); }
.publish-date { display: block; font-size: 0.78rem; color: var(--text-muted); }

.social-share { display: flex; gap: 10px; }

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-light);
    color: var(--text-body);
}

.share-btn:hover { transform: translateY(-2px); }
.share-btn.whatsapp:hover { background-color: var(--accent-green); border-color: var(--accent-green); color: #fff; box-shadow: var(--green-glow); }
.share-btn.link-copy:hover { background-color: var(--brand-blue); border-color: var(--brand-blue); color: #06231F; box-shadow: var(--blue-glow); }

.article-figure { margin-bottom: 32px; }

.article-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: block;
    object-fit: cover;
    max-height: 420px;
}

.article-figure figcaption {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

.article-content p {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 22px;
    line-height: 1.72;
}

.article-content strong { color: var(--text-heading); font-weight: 700; }

.article-content .brand-badge {
    background-color: rgba(0, 217, 192, 0.12);
    color: var(--brand-blue);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 217, 192, 0.3);
}

.quote-box {
    background-color: rgba(0, 217, 192, 0.06);
    border-left: 4px solid var(--brand-blue);
    padding: 22px 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
}

.quote-box p { font-style: italic; font-size: 1.1rem; color: var(--text-heading); margin-bottom: 10px; }
.quote-box cite { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.article-content h3 { font-size: 1.55rem; margin-top: 36px; margin-bottom: 14px; color: var(--text-heading); }

/* SIDEBAR */
.news-sidebar { position: relative; }

.sidebar-card {
    position: sticky;
    top: 88px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--brand-blue);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.badge-row { margin-bottom: 14px; }

.secure-badge {
    background-color: rgba(0, 217, 192, 0.12);
    color: var(--brand-blue);
    border: 1px solid rgba(0, 217, 192, 0.3);
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sidebar-card h3 { font-size: 1.25rem; margin-bottom: 22px; line-height: 1.3; color: var(--text-heading); }

.trust-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.trust-bullets li { display: flex; gap: 14px; }

.bullet-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 217, 192, 0.12);
    color: var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(0, 217, 192, 0.2);
}

.trust-bullets li strong { display: block; color: var(--text-heading); font-size: 0.9rem; margin-bottom: 3px; }
.trust-bullets li p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

.sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: #06231F;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--blue-glow);
}

.sidebar-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 26px rgba(0, 217, 192, 0.45); }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-it-works {
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 72px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 36px 22px 24px 22px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 217, 192, 0.35);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(0, 217, 192, 0.08);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 22px;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: #06231F;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--blue-glow);
}

.step-icon { font-size: 2rem; color: var(--brand-blue); margin-bottom: 18px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text-heading); }
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   HUMANIZED SUPPORT
   ========================================================================== */
.humanized-support {
    padding: 72px 0;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.support-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) { .support-wrapper { grid-template-columns: 6fr 5fr; } }

.support-text h2 { font-size: 2.1rem; line-height: 1.2; margin-bottom: 22px; color: var(--text-heading); }
@media (min-width: 768px) { .support-text h2 { font-size: 2.65rem; } }

.support-p { font-size: 1.05rem; color: var(--text-body); margin-bottom: 18px; line-height: 1.65; }
.support-p strong { color: var(--text-heading); }

.support-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
    margin-bottom: 32px;
}

.support-features li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--text-body); }
.support-features li i { color: var(--accent-green); font-size: 1.1rem; flex-shrink: 0; }

.btn-whatsapp-support {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-green);
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--green-glow);
    transition: var(--transition);
}

.btn-whatsapp-support:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4); }

/* PHONE MOCK */
.support-simulator { display: flex; justify-content: center; }

.phone-frame {
    width: 100%;
    max-width: 310px;
    height: 510px;
    background: #010101;
    border: 10px solid #2a2a2a;
    border-radius: 40px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 17px;
    background: #2a2a2a;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #0b141a;
    display: flex;
    flex-direction: column;
    padding-top: 14px;
}

.chat-header {
    background-color: #1f2c34;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-user-info { display: flex; align-items: center; gap: 10px; }

.avatar-wrapper { position: relative; width: 36px; height: 36px; }

.chat-avatar {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: var(--accent-green);
    border: 2px solid #1f2c34;
    border-radius: var(--radius-full);
}

.chat-name { display: block; color: #e9edef; font-weight: 700; font-size: 0.82rem; }
.chat-status { display: block; color: var(--accent-green); font-size: 0.62rem; }
.chat-icons { color: #aebac1; font-size: 0.85rem; display: flex; gap: 14px; }

.chat-messages {
    flex-grow: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.message-timestamp {
    background-color: rgba(18, 27, 34, 0.8);
    color: #8696a0;
    font-size: 0.62rem;
    padding: 3px 10px;
    border-radius: 6px;
    align-self: center;
    text-transform: uppercase;
    font-weight: 600;
}

.message {
    max-width: 85%;
    padding: 8px 12px;
    font-size: 0.78rem;
    line-height: 1.4;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.message.show { transform: translateY(0); opacity: 1; }

.bubble-left {
    background-color: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.msg-time { display: block; text-align: right; font-size: 0.58rem; color: #8696a0; margin-top: 4px; }

.typing-indicator {
    align-self: flex-start;
    background-color: #202c33;
    padding: 8px 14px;
    border-radius: 10px;
    border-top-left-radius: 0;
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-indicator span {
    width: 5px;
    height: 5px;
    background-color: #8696a0;
    border-radius: var(--radius-full);
    display: inline-block;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

.hidden { display: none !important; }

.chat-input-area {
    background-color: #1f2c34;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8696a0;
    font-size: 1rem;
}

.mock-input {
    flex-grow: 1;
    background-color: #2a3942;
    color: #8696a0;
    font-size: 0.72rem;
    padding: 8px 12px;
    border-radius: 8px;
}

.mic-circle {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background-color: var(--accent-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

/* ==========================================================================
   MARKETS SECTION — Mercados Abertos (substitui a seção de acumulados)
   ========================================================================== */
.markets-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #06120F 0%, #0A0A0C 45%, #071815 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.markets-section::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 217, 192, 0.14) 0%, transparent 70%);
    top: -180px;
    left: -140px;
    pointer-events: none;
}

.markets-section::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 217, 192, 0.10) 0%, transparent 70%);
    bottom: -160px;
    right: -120px;
    pointer-events: none;
}

.banner-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    color: var(--text-white);
    position: relative;
}

@media (min-width: 768px) { .banner-title { font-size: 2.85rem; } }

.markets-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 48px auto;
    position: relative;
}

/* FEATURED MARKET CARD */
.market-featured {
    position: relative;
    max-width: 900px;
    margin: 0 auto 32px auto;
    background-color: rgba(22, 22, 26, 0.9);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: left;
}

@media (min-width: 768px) { .market-featured { grid-template-columns: 220px 1fr; } }

.market-featured-visual {
    background: linear-gradient(160deg, #FF9D2E 0%, #FF6B35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.market-visual-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.92);
}

.market-featured-body {
    padding: 28px 30px;
}

.market-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.market-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.cat-sports  { background-color: rgba(37, 211, 102, 0.14); color: #4ADE80; border: 1px solid rgba(37, 211, 102, 0.3); }
.cat-crypto  { background-color: rgba(255, 159, 46, 0.14); color: #FFB25E; border: 1px solid rgba(255, 159, 46, 0.3); }
.cat-politics{ background-color: rgba(255, 91, 119, 0.14); color: #FF7C93; border: 1px solid rgba(255, 91, 119, 0.3); }

.market-candidates-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.market-featured-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-heading);
}

.market-outcomes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.outcome-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.outcome-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.dot-france   { background-color: #3DEDD8; }
.dot-argentina{ background-color: #FF7C93; }
.dot-portugal { background-color: #5B9CFF; }
.dot-brazil   { background-color: #FFC24A; }

.outcome-name {
    font-size: 0.88rem;
    color: var(--text-body);
    width: 90px;
    flex-shrink: 0;
    font-weight: 600;
}

.outcome-bar {
    flex-grow: 1;
    height: 6px;
    background-color: rgba(255,255,255,0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.outcome-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
    border-radius: var(--radius-full);
}

.outcome-pct {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-heading);
    width: 42px;
    text-align: right;
    flex-shrink: 0;
}

.market-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.market-open-link {
    color: var(--brand-blue);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.market-open-link:hover { gap: 10px; }

/* GRID OF SMALLER MARKET CARDS */
.markets-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

@media (min-width: 768px) { .markets-grid { grid-template-columns: repeat(3, 1fr); } }

.market-card {
    background-color: rgba(22, 22, 26, 0.9);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.market-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 192, 0.35);
    box-shadow: var(--shadow-md);
}

.market-card-title {
    font-size: 1.02rem;
    line-height: 1.35;
    margin-bottom: 20px;
    color: var(--text-heading);
    min-height: 52px;
}

.market-chance {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.chance-ring {
    --pct: 50;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(var(--brand-blue) calc(var(--pct) * 1%), rgba(255,255,255,0.08) 0);
    position: relative;
}

.chance-ring::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-card);
}

.chance-ring span {
    position: relative;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text-heading);
}

.chance-labels {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chance-yes, .chance-no {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    display: inline-block;
    width: fit-content;
}

.chance-yes { background-color: rgba(37, 211, 102, 0.14); color: #4ADE80; }
.chance-no  { background-color: rgba(255, 59, 92, 0.14); color: #FF7C93; }

.markets-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.markets-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: #06231F;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 34px;
    border-radius: var(--radius-md);
    box-shadow: var(--blue-glow);
    transition: var(--transition);
}

.markets-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 217, 192, 0.45); }

.security-strip {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 600;
}

.security-strip span { display: inline-flex; align-items: center; gap: 7px; }
.security-strip i { color: var(--brand-blue); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    padding: 72px 0;
    background-color: var(--bg-main);
}

.faq-accordion {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover { border-color: rgba(0, 217, 192, 0.3); box-shadow: var(--shadow-md); }

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-heading);
    text-align: left;
    gap: 18px;
}

.faq-trigger i { color: var(--brand-blue); font-size: 0.9rem; transition: var(--transition); flex-shrink: 0; }
.faq-trigger[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-trigger[aria-expanded="true"] { color: var(--brand-blue); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-content p {
    padding: 0 26px 22px 26px;
    color: var(--text-body);
    font-size: 0.93rem;
    line-height: 1.65;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.faq-content strong { color: var(--text-heading); }

/* ==========================================================================
   FOOTER — Preto/Escuro como no site oficial da Certero
   ========================================================================== */
.portal-footer {
    background-color: var(--bg-header);
    border-top: 1px solid var(--border-light);
    padding-top: 60px;
    color: rgba(255,255,255,0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 768px) { .footer-content { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 14px;
    display: block;
}

.footer-title-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 14px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 400px;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 18px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--brand-blue); padding-left: 4px; }

.footer-site-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: #06231F;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: var(--transition);
    box-shadow: var(--blue-glow);
}

.footer-site-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0, 217, 192, 0.4); }

.footer-contact-note { font-size: 0.83rem; line-height: 1.5; color: rgba(255,255,255,0.6); margin-top: 10px; }

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 28px 0;
    font-size: 0.72rem;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto 18px auto;
    line-height: 1.6;
    text-align: justify;
    color: rgba(255,255,255,0.45);
}

.copyright { color: rgba(255,255,255,0.4); }
.copyright a { color: rgba(255,255,255,0.65); }
.copyright a:hover { color: var(--brand-blue); }

/* ==========================================================================
   MARKETS CAROUSEL
   ========================================================================== */
.markets-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.markets-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: var(--radius-full);
    background-color: rgba(10, 10, 12, 0.85);
    border: 1px solid var(--border-light);
    color: var(--text-heading);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(6px);
}

.carousel-btn:hover {
    background-color: var(--brand-blue);
    color: #06231F;
    border-color: var(--brand-blue);
    box-shadow: var(--blue-glow);
}

.carousel-btn-prev { left: -23px; }
.carousel-btn-next { right: -23px; }

@media (max-width: 768px) {
    .carousel-btn-prev { left: 8px; }
    .carousel-btn-next { right: 8px; }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--brand-blue);
    width: 28px;
    box-shadow: var(--blue-glow);
}

.carousel-dot:hover:not(.active) {
    background-color: rgba(255,255,255,0.45);
}

/* ==========================================================================
   SECAO 17 — CTA FINAL
   ========================================================================== */
.cta-final-section {
    padding: 90px 0;
    background: linear-gradient(160deg, #06120F 0%, #0A0A0C 50%, #071815 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 192, 0.12) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-final-title {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-white);
    margin-bottom: 22px;
    position: relative;
}

@media (min-width: 768px) {
    .cta-final-title { font-size: 3.2rem; }
}

.cta-final-paragraph {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto 42px auto;
    line-height: 1.65;
    position: relative;
}

.cta-final-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: #06231F;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 22px 44px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 217, 192, 0.45);
    transition: var(--transition);
    letter-spacing: -0.01em;
    position: relative;
    line-height: 1.2;
}

.cta-final-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 42px rgba(0, 217, 192, 0.55);
}

.cta-final-sub {
    margin-top: 18px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
}
