/* ==========================================================================
   DESIGN SYSTEM - ROBOT HOUSE — PREMIUM TECH EDITION
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg-main:        #09090f;
    --bg-card:        #10111a;
    --bg-card-hover:  #16182400;
    --bg-elevated:    #13141e;
    --border-color:   #1e2030;
    --border-md:      #2a2d42;
    --border-glow:    rgba(233, 137, 14, 0.18);
    --border-glow-md: rgba(233, 137, 14, 0.30);

    --color-primary:  #e9890e;
    --color-primary-dim: #b86c0b;
    --color-primary-glow: rgba(233, 137, 14, 0.25);
    --color-primary-soft: rgba(233, 137, 14, 0.07);
    --color-secondary: #fee486;
    --color-success:  #22c55e;
    --color-warning:  #eab308;
    --color-danger:   #ef4444;

    --font-display: 'Outfit', sans-serif;
    --font-body:    'Manrope', sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow:    0 0 40px rgba(233, 137, 14, 0.08);
    --shadow-glow-md: 0 0 32px rgba(233, 137, 14, 0.18);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.22s var(--ease-out);
}

/* Reset Global */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundo: dot-grid + segunda camada de estrelas */
body {
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle, rgba(233, 137, 14, 0.045) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 28px 28px, 71px 71px;
    background-position: 0 0, 17px 17px;
    color: #cdd6f4;
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Raios estelares — conic-gradient fixo atrás de todo o conteúdo */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: conic-gradient(
        from 210deg at 58% 8%,
        transparent       0deg,
        rgba(233,137,14,0.022)  3deg,
        transparent       7deg,
        transparent      20deg,
        rgba(200,175,255,0.009) 23deg,
        transparent      27deg,
        transparent      50deg,
        rgba(233,137,14,0.016) 53deg,
        transparent      57deg,
        transparent      95deg,
        rgba(200,175,255,0.007) 98deg,
        transparent     103deg,
        transparent     148deg,
        rgba(233,137,14,0.013) 151deg,
        transparent     155deg,
        transparent     200deg,
        rgba(200,175,255,0.010) 203deg,
        transparent     207deg,
        transparent     275deg,
        rgba(233,137,14,0.020) 278deg,
        transparent     282deg,
        transparent     360deg
    );
    pointer-events: none;
    z-index: 0;
}

/* Névoa sideral — nuvem de cor profunda atrás */
body::after {
    content: '';
    position: fixed;
    top: -20%; left: 10%;
    width: 110vw; height: 90vh;
    background: radial-gradient(ellipse 75% 65% at 52% 38%,
        rgba(55, 15, 90, 0.10) 0%,
        rgba(20, 8,  55, 0.06) 45%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 0;
    filter: blur(48px);
    animation: nebula-drift 22s ease-in-out infinite alternate;
}

@keyframes nebula-drift {
    from { transform: translate(0,    0)    scale(1);    }
    to   { transform: translate(-2%, 1.5%) scale(1.04); }
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================================
   HEADER — Frosted glass premium
   ========================================================= */
/* Sticky wrapper: header + ticker movem juntos */
.site-sticky-top {
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-sticky-top header {
    position: relative;
    top: auto;
    z-index: auto;
}

header {
    background: rgba(9, 9, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
}

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

header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

header .logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 0 12px rgba(233, 137, 14, 0.2));
}

header .logo img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 0 20px rgba(233, 137, 14, 0.35));
}

header .nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

header .nav-link {
    color: #7f849c;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

header .nav-link:hover {
    color: var(--color-primary);
}

header .btn-admin {
    background: transparent;
    border: 1px solid var(--border-md);
    padding: 8px 18px;
    border-radius: 6px;
    color: #cdd6f4;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

header .btn-admin:hover {
    border-color: var(--color-primary);
    color: #fff;
    background: var(--color-primary-soft);
    box-shadow: 0 0 16px rgba(233, 137, 14, 0.12);
}

/* =========================================================
   HERO — Ambience + impacto tipográfico
   ========================================================= */
.hero {
    padding: 88px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glow central ambiente */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(233, 137, 14, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.badge {
    background: rgba(233, 137, 14, 0.06);
    border: 1px solid var(--border-glow);
    color: var(--color-primary);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
    font-weight: 600;
}

/* Ponto pulsante no badge */
.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--color-primary);
}

.hero p {
    font-size: 16px;
    color: #7f849c;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Linha separadora gradiente após hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 137, 14, 0.2), transparent);
}

/* =========================================================
   PANEL LAYOUT
   ========================================================= */
.panel-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    margin: 48px 0 80px;
    align-items: start;
}

@media (max-width: 992px) {
    .panel-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.panel-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Títulos de seção com barra dourada */
.panel-section-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #7f849c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.panel-section-title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 48px;
    height: 1px;
    background: var(--color-primary);
}

.panel-section-title i {
    color: var(--color-primary);
    font-size: 14px;
}

/* =========================================================
   SPECS CARD — Robô em destaque
   ========================================================= */
.specs-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    transition: var(--transition);
}

.specs-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card), var(--shadow-glow-md);
    border-color: var(--border-glow-md);
}

/* Container da imagem do robô — estrela da tela */
.specs-img-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-glow);
    background: linear-gradient(160deg, #0d0e18 0%, #07080f 100%);
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Glow ambiente atrás do robô */
.specs-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(233, 137, 14, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

/* Gradiente inferior para blend */
.specs-img-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(16, 17, 26, 0.6));
    pointer-events: none;
}

.specs-img-container img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
    filter: drop-shadow(0 8px 32px rgba(233, 137, 14, 0.15));
    position: relative;
    z-index: 1;
}

.specs-card:hover .specs-img-container img {
    transform: scale(1.03) translateY(-4px);
    filter: drop-shadow(0 12px 40px rgba(233, 137, 14, 0.28));
}

.specs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.specs-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.specs-tag {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border: 1px solid var(--border-glow);
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.specs-desc {
    font-size: 13px;
    color: #6c7086;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Tabela técnica premium */
.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.tech-specs-table td {
    padding: 10px 14px;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.tech-specs-table tr:last-child td {
    border-bottom: none;
}

.tech-specs-table td.label {
    color: #585b70;
    font-weight: 500;
}

.tech-specs-table td.value {
    font-family: var(--font-mono);
    text-align: right;
    color: #cdd6f4;
    font-weight: 600;
    font-size: 13px;
}

.tech-specs-table td.value.success { color: var(--color-success); }
.tech-specs-table td.value.warning { color: var(--color-warning); }

/* =========================================================
   ACTIVATION LIST — Seleção de robôs
   ========================================================= */
.activation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activation-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.activation-item:hover {
    background: var(--bg-elevated);
    border-color: var(--border-md);
}

.activation-item.focused {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(233,137,14,0.05) 0%, transparent 60%);
    box-shadow: 0 0 0 1px rgba(233,137,14,0.12), 0 0 24px rgba(233, 137, 14, 0.12);
    animation: border-pulse 3s ease-in-out infinite;
}

.activation-item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.activation-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center top;
    border: 1px solid var(--border-glow);
    filter: drop-shadow(0 2px 8px rgba(233, 137, 14, 0.15));
}

.activation-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.activation-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #cdd6f4;
    letter-spacing: -0.01em;
}

.activation-price {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Toggle switch premium */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(30, 32, 48, 0.8);
    transition: var(--transition);
    border-radius: 26px;
    border: 1px solid var(--border-md);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #585b70;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 16px rgba(233, 137, 14, 0.4);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: #0a0b10;
}

/* =========================================================
   CALCULATOR PANEL — Demonstrativo de custos
   ========================================================= */
.calculator-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #585b70;
}

.tech-value {
    font-family: var(--font-mono);
    color: #cdd6f4;
    font-weight: 600;
}

.tech-success {
    font-family: var(--font-mono);
    color: var(--color-success);
    font-weight: 600;
}

.price-row.discount-row {
    color: var(--color-success);
}

.price-row.total-row {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-top: 2px;
}

.price-row.total-row .total-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #7f849c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-row.total-row .total-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 24px rgba(233, 137, 14, 0.4);
    letter-spacing: -0.02em;
}

.installment-info {
    font-size: 12px;
    color: #45475a;
    text-align: right;
    margin-top: -8px;
    font-family: var(--font-mono);
}

.btn-checkout {
    background: var(--color-primary);
    border: none;
    color: #0a0b10;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-checkout:hover {
    background: var(--color-primary);
    box-shadow: 0 4px 28px rgba(233, 137, 14, 0.45);
    transform: translateY(-1px);
}

.btn-checkout:disabled {
    background: #1e2030;
    color: #45475a;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* =========================================================
   LOGIN / ADMIN
   ========================================================= */
.login-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    max-width: 400px;
    margin: 80px auto;
    box-shadow: var(--shadow-card);
}

.login-card h2 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 6px;
    text-align: center;
    color: #fff;
    letter-spacing: -0.02em;
}

.login-card p.subtitle {
    text-align: center;
    color: #585b70;
    font-size: 13px;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #7f849c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-md);
    color: #cdd6f4;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(233, 137, 14, 0.1);
}

.btn-primary {
    width: 100%;
    background: var(--color-primary);
    border: none;
    color: #0a0b10;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-primary:hover {
    box-shadow: 0 4px 24px rgba(233, 137, 14, 0.4);
    transform: translateY(-1px);
}

/* =========================================================
   TOASTS
   ========================================================= */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--color-primary);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cdd6f4;
    font-size: 13px;
    min-width: 280px;
}

.toast.success { border-left-color: var(--color-success); }
.toast.error   { border-left-color: var(--color-danger); }

/* =========================================================
   ADMIN DASHBOARD
   ========================================================= */
.admin-dashboard { padding: 32px 0; }

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.admin-title-col h1 {
    font-family: var(--font-display);
    font-size: 26px;
    color: #fff;
    letter-spacing: -0.03em;
}

.admin-title-col p {
    color: #585b70;
    font-size: 13px;
    margin-top: 2px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-md);
    color: #cdd6f4;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: #7f849c;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
}

@media (max-width: 992px) {
    .admin-grid { grid-template-columns: 1fr; }
}

.admin-card-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.admin-card-box h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    color: #cdd6f4;
    letter-spacing: -0.02em;
}

.table-responsive { overflow-x: auto; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: #585b70;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 13px;
    color: #cdd6f4;
}

.admin-table tbody tr:hover { background: rgba(255,255,255,0.01); }

.table-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.actions-cell { display: flex; gap: 6px; }

.btn-action {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #585b70;
    padding: 4px 9px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    transition: var(--transition);
}

.btn-action.edit:hover   { border-color: var(--color-primary); color: var(--color-primary); }
.btn-action.delete:hover { border-color: var(--color-danger);  color: var(--color-danger);  }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    border-top: 1px solid var(--border-color);
    padding: 36px 0;
    text-align: center;
    background: var(--bg-main);
}

footer p {
    font-size: 13px;
    color: #313244;
    margin-bottom: 8px;
}

footer .cconecta-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #313244;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

footer .cconecta-signature a {
    color: #45475a;
    text-decoration: none;
    transition: var(--transition);
}

footer .cconecta-signature a:hover {
    color: var(--color-primary);
}

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--color-primary); }
    50%       { opacity: 0.4; box-shadow: none; }
}

@keyframes border-pulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(233,137,14,0.12), 0 0 24px rgba(233,137,14,0.12); }
    50%       { box-shadow: 0 0 0 1px rgba(233,137,14,0.22), 0 0 36px rgba(233,137,14,0.20); }
}

@keyframes scroll-drop {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   LP SECTIONS — full-viewport sections
   ========================================================= */
.lp-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
    padding: 140px 0 100px;
    text-align: center;
    align-items: center;
}

/* Orbs de fundo */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-orb-a {
    width: 600px; height: 600px;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(233, 137, 14, 0.07) 0%, transparent 70%);
}

.hero-orb-b {
    width: 400px; height: 400px;
    bottom: 0; right: -100px;
    background: radial-gradient(circle, rgba(233, 137, 14, 0.04) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    animation: fade-up 0.7s var(--ease-out) both;
}

/* Tipografia hero */
.hero-h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 0 28px;
}

.hero-h1-pre {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 500;
    color: #585b70;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-h1-main {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #fff;
    /* Sutil gradiente do branco ao amarelo claro */
    background: linear-gradient(160deg, #ffffff 40%, #fee486 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-body {
    font-size: clamp(15px, 2vw, 17px);
    color: #6c7086;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* CTAs hero */
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn-cta {
    background: var(--color-primary);
    color: #0a0b10;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta:hover {
    box-shadow: 0 6px 32px rgba(233, 137, 14, 0.45);
    transform: translateY(-2px);
}

.btn-cta-ghost {
    background: transparent;
    color: #7f849c;
    padding: 14px 32px;
    border-radius: 8px;
    border: 1px solid var(--border-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-ghost:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

/* Stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hstat-val {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hstat-val small {
    font-size: 0.45em;
    vertical-align: middle;
}

.hstat-label {
    font-size: 11px;
    color: #45475a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.hstat-sep {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-md), transparent);
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    opacity: 0.5;
    transition: var(--transition);
}

.scroll-cue:hover { opacity: 1; }

.scroll-cue-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-cue-track {
    width: 1px;
    height: 36px;
    background: var(--border-md);
    position: relative;
    overflow: hidden;
}

.scroll-cue-dot {
    position: absolute;
    top: 0;
    width: 1px;
    height: 12px;
    background: var(--color-primary);
    animation: scroll-drop 1.4s var(--ease-out) infinite;
}

/* =========================================================
   MODULES SECTION
   ========================================================= */
.modules-section {
    background: var(--bg-main);
    padding: 80px 0;
    align-items: stretch;
}

.section-heading {
    text-align: center;
    margin-bottom: 64px;
}

.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 12px 0 16px;
}

.section-sub {
    font-size: 15px;
    color: #6c7086;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid de cards de módulo — JS injeta .module-card aqui */
.module-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

/* Card gerado pelo JS */
.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.module-card:hover {
    border-color: var(--border-glow-md);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(233, 137, 14, 0.08);
}

.module-card:hover::before { opacity: 1; }

.module-card-img {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    background: linear-gradient(160deg, #0d0e18 0%, #070810 100%);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.module-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(233,137,14,0.10) 0%, transparent 65%);
}

.module-card-img img {
    max-height: 190px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(233, 137, 14, 0.18));
    transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
    position: relative;
    z-index: 1;
}

.module-card:hover .module-card-img img {
    transform: scale(1.06) translateY(-6px);
    filter: drop-shadow(0 16px 40px rgba(233, 137, 14, 0.32));
}

.module-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.module-card-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.module-card-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border: 1px solid var(--border-glow);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
    flex-shrink: 1;
}

.module-card-desc {
    font-size: 13.5px;
    color: #585b70;
    line-height: 1.7;
}
.desc-toggle {
    background: none;
    border: none;
    color: var(--accent-gold, #f0a500);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.03em;
}
.desc-toggle:hover { text-decoration: underline; }

.module-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mspec {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mspec-label {
    font-size: 10px;
    color: #45475a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.mspec-val {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: #cdd6f4;
}

.mspec-val.success { color: var(--color-success); }
.mspec-val.warning { color: var(--color-warning); }

/* Badge de mercado abaixo do cabeçalho do card */
.module-card-market {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    color: #8890b0;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Dois CTAs empilhados — Vitalício + Mensal */
.module-card-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.btn-cta-vitalicio,
.btn-cta-mensal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-cta-vitalicio {
    background: var(--color-primary);
    color: #05050a;
}
.btn-cta-vitalicio:hover {
    background: #f0a020;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(233,137,14,0.35);
}

.btn-cta-mensal {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--border-glow-md);
}
.btn-cta-mensal:hover {
    background: var(--color-primary-soft);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.btn-cta-vitalicio span,
.btn-cta-mensal span {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
}

.module-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.module-card-price {
    display: flex;
    flex-direction: column;
}

.module-card-price-label {
    font-size: 11px;
    color: #45475a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.module-card-price-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.module-card-price-value small {
    font-size: 0.45em;
    color: #585b70;
    font-weight: 500;
    vertical-align: middle;
}

/* =========================================================
   VIDEOS SECTION
   ========================================================= */
.videos-section {
    background: var(--bg-main);
    padding: 80px 0 100px;
    align-items: stretch;
    border-top: 1px solid var(--border-color);
}

.video-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    border-color: var(--border-glow-md);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(233,137,14,0.07);
}

/* Wrapper 16:9 responsivo */
.video-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #06060e;
}

.video-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Placeholder quando sem vídeo */
.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(160deg, #0d0e18 0%, #07080f 100%);
}

.video-placeholder-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(233,137,14,0.10);
    border: 1px solid var(--border-glow);
    display: flex; align-items: center; justify-content: center;
}

.video-placeholder-icon::after {
    content: '';
    width: 0; height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid var(--color-primary);
    margin-left: 4px;
}

.video-placeholder-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: #45475a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.video-card-footer {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--border-color);
}

.video-card-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}

.video-card-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border: 1px solid var(--border-glow);
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* =========================================================
   ACTIVATION SECTION
   ========================================================= */
.activation-section {
    background: var(--bg-main);
    padding: 80px 0 100px;
    align-items: stretch;
    /* Linha separadora sutil no topo */
    border-top: 1px solid var(--border-color);
}

.activation-section .panel-layout {
    margin-top: 0;
    margin-bottom: 0;
}

/* =========================================================
   PÁGINAS INTERNAS (não-home)
   ========================================================= */
.page-section {
    padding: 80px 0 100px;
    min-height: calc(100vh - 72px);
}

/* Nav link ativo */
.nav-link.active {
    color: var(--color-primary) !important;
    position: relative;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

/* CTA row abaixo dos cards na home */
.home-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* =========================================================
   PLANOS
   ========================================================= */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.plano-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition);
}
.plano-card:hover {
    border-color: var(--border-glow-md);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 32px rgba(233,137,14,0.07);
}

.plano-robot-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.plano-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--bg-terminal);
    border: 1px solid var(--border-glow);
}
.plano-robot-name {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
}
.plano-robot-tag {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.plano-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.plano-option {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}
.plano-option.plano-vitalicio {
    border-color: var(--border-glow);
    background: rgba(233,137,14,0.04);
}

.plano-option-label {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.plano-option-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-top: 4px;
}
.plano-option-price small {
    font-size: 0.45em;
    color: var(--text-muted);
    font-weight: 500;
}
.plano-option-sub {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.plano-badge-destaque {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.planos-desconto-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 24px 28px;
    flex-wrap: wrap;
}

/* =========================================================
   ENCOMENDAS
   ========================================================= */
.encomenda-tipos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
@media (max-width: 520px) {
    .encomenda-tipos { grid-template-columns: 1fr; }
    .plano-options { grid-template-columns: 1fr; }
}

/* =========================================================
   HAMBÚRGUER — oculto no desktop
   ========================================================= */
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-md);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #cdd6f4;
    border-radius: 2px;
    transition: var(--transition);
}

/* =========================================================
   MOBILE — breakpoint principal (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {
    /* Hambúrguer visível */
    .nav-toggle { display: flex; }

    /* Nav colapsada — expande ao abrir */
    header .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(6, 6, 12, 0.99);
        border-top: 1px solid var(--border-glow);
        border-bottom: 1px solid var(--border-glow);
        padding: 8px 0 16px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 200;
    }
    header.nav-open .nav-menu { display: flex; }

    header .nav-link {
        padding: 14px 24px;
        font-size: 15px;
        border-bottom: 1px solid var(--border-color);
        display: block;
    }
    header .btn-admin {
        margin: 12px 24px 0;
        display: inline-flex;
        width: auto;
    }

    /* Header precisa de position: relative para o dropdown absoluto */
    .site-sticky-top header { position: relative; }

    /* Container — laterais menores */
    .container { padding: 0 16px; }

    /* lp-section — sem min-height 100vh no mobile */
    .lp-section { min-height: auto; }

    /* Hero — reduz padding vertical */
    .hero-section { padding: 64px 0 48px; }

    /* Stats bar */
    .hero-stats { gap: 20px; }
    .hstat-sep  { width: 40px; height: 1px; }

    /* Headline */
    .hero-h1-main { font-size: clamp(2.6rem, 11vw, 4rem); }

    /* Hero body */
    .hero-body { font-size: 14px; padding: 0 4px; }

    /* CTAs empilhados */
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }
    .btn-cta,
    .btn-cta-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* News tabs — scroll horizontal */
    .news-tabs  { gap: 6px; padding: 0 16px; }
    .news-tab   { font-size: 12px; padding: 8px 12px; white-space: nowrap; }

    /* Grid notícias — 1 coluna */
    .news-grid  { grid-template-columns: 1fr; }
}

.encomenda-tipo-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.encomenda-tipo-card:hover {
    border-color: var(--border-glow);
}
.encomenda-tipo-card.selected {
    border-color: var(--color-primary);
    background: rgba(233,137,14,0.05);
}
.encomenda-tipo-card strong {
    color: #fff;
    font-size: 15px;
    font-family: var(--font-display);
}
.encomenda-tipo-card p {
    color: var(--text-dim);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.encomenda-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================================================
   FAIXA DE MERCADO (TRADINGVIEW TICKER TAPE)
   ========================================================= */
.market-ticker-bar {
    background: rgba(6, 6, 12, 0.98);
    border-bottom: 1px solid var(--border-color);
    height: 46px;
    overflow: hidden;
    width: 100%;
    /* força GPU compositing — resolve ticker estático no iOS/mobile */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}
.market-ticker-bar .tradingview-widget-container {
    width: 100%;
    height: 46px;
}
.market-ticker-bar .tradingview-widget-container__widget {
    width: 100%;
    height: 46px;
}
/* iframe gerado pelo TradingView */
.market-ticker-bar iframe {
    width: 100% !important;
    height: 46px !important;
    border: none !important;
    pointer-events: auto !important;
}

/* =========================================================
   SEÇÃO CORRETORA PARCEIRA (4XC)
   ========================================================= */
.broker-section {
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 100px;
    min-height: auto;
}

.broker-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 14px;
    padding: 12px 24px;
    margin-bottom: 28px;
}

.broker-logo-badge-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.04em;
}

.broker-logo-badge-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: #8890b0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-left: 1px solid var(--border-color);
    padding-left: 12px;
}

.broker-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 48px;
    margin-bottom: 44px;
}

.broker-adv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
}
.broker-adv-card:hover {
    border-color: var(--border-glow-md);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px rgba(233,137,14,0.06);
}
.broker-adv-card i {
    font-size: 24px;
    color: var(--color-primary);
}
.broker-adv-card strong {
    display: block;
    color: #f0f0f8;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}
.broker-adv-card p {
    color: #8890b0;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.broker-cta-wrap {
    text-align: center;
}
.broker-cta-note {
    color: #8890b0;
    font-size: 12px;
    margin-top: 12px;
}

/* =========================================================
   PÁGINA NOTÍCIAS
   ========================================================= */
.news-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.news-tab {
    padding: 9px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: #8890b0;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
}
.news-tab:hover,
.news-tab.active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-soft);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.news-card:hover {
    border-color: var(--border-glow-md);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.news-card-media {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}
.news-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-card-no-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0c0c1e 0%, #111130 60%, #0a0a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--color-primary, #e9890e);
    opacity: 0.4;
}
.news-card-desc {
    color: #8890b0;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}
.news-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.news-card-source {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.news-card-title {
    color: #f0f0f8;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}
.news-card-date {
    color: #8890b0;
    font-size: 11px;
    margin-top: auto;
    padding-top: 8px;
}

.news-skeleton {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0.6;
    animation: pulse-dim 1.6s ease-in-out infinite;
}
@keyframes pulse-dim { 0%,100%{opacity:.4} 50%{opacity:.8} }
.news-skeleton-img { width:100%; height:160px; background:var(--bg-elevated,#13141e); }
.news-skeleton-body { padding:18px 20px; display:flex; flex-direction:column; gap:10px; }
.news-skeleton-line { height:12px; border-radius:4px; background:var(--bg-elevated,#13141e); }
.news-skeleton-line.wide { width:90%; }
.news-skeleton-line.mid  { width:70%; }
.news-skeleton-line.short{ width:45%; }

.news-error-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 24px;
    color: #8890b0;
}

/* =========================================================
   IDENTIDADE VISUAL POR PÁGINA
   ========================================================= */

body.page-robos {
    background-image:
        linear-gradient(rgba(233,137,14,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233,137,14,0.10) 1px, transparent 1px),
        radial-gradient(circle, rgba(233,137,14,0.12) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 64px 64px, 64px 64px, 28px 28px, 71px 71px;
    background-position: 0 0, 0 0, 0 0, 17px 17px;
}
body.page-robos::after {
    top: auto; bottom: -20%; left: auto; right: 5%; width: 90vw; height: 80vh;
    background: radial-gradient(ellipse 70% 60% at 70% 60%,
        rgba(15,40,90,0.09) 0%, rgba(8,20,55,0.05) 45%, transparent 72%);
    animation: nebula-drift 28s ease-in-out infinite alternate;
}

body.page-planos {
    background-image:
        repeating-linear-gradient(-50deg,
            transparent 0px, transparent 48px,
            rgba(233,137,14,0.08) 48px, rgba(233,137,14,0.08) 49px),
        radial-gradient(circle, rgba(233,137,14,0.10) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: auto, 28px 28px, 71px 71px;
    background-position: 0 0, 0 0, 17px 17px;
}
body.page-planos::before {
    background: conic-gradient(
        from 45deg at 80% 90%,
        transparent 0deg, rgba(233,137,14,0.07) 3deg, transparent 7deg,
        transparent 60deg, rgba(233,137,14,0.05) 63deg, transparent 67deg,
        transparent 120deg, rgba(200,175,255,0.03) 123deg, transparent 127deg,
        transparent 360deg);
}
body.page-planos::after {
    top: auto; bottom: -20%; left: -5%; right: auto; width: 90vw; height: 90vh;
    background: radial-gradient(ellipse 65% 55% at 25% 85%,
        rgba(80,35,8,0.12) 0%, transparent 70%);
    animation: nebula-drift 24s ease-in-out infinite alternate;
}

body.page-cursos {
    background-image:
        radial-gradient(circle, rgba(233,137,14,0.12) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 40px 40px, 71px 71px;
    background-position: 0 0, 17px 17px;
}
body.page-cursos::after {
    top: 5%; left: auto; right: -5%; width: 80vw;
    background: radial-gradient(ellipse 60% 60% at 85% 25%,
        rgba(25,70,15,0.08) 0%, transparent 70%);
}

body.page-encomendas {
    background-image:
        repeating-linear-gradient(45deg,
            transparent 0px, transparent 26px,
            rgba(233,137,14,0.07) 26px, rgba(233,137,14,0.07) 27px),
        repeating-linear-gradient(-45deg,
            transparent 0px, transparent 26px,
            rgba(233,137,14,0.07) 26px, rgba(233,137,14,0.07) 27px),
        radial-gradient(circle, rgba(233,137,14,0.10) 1px, transparent 1px);
    background-size: auto, auto, 28px 28px;
}

body.page-admin {
    background-image:
        repeating-linear-gradient(0deg,
            transparent 0, transparent 3px,
            rgba(233,137,14,0.05) 3px, rgba(233,137,14,0.05) 4px),
        radial-gradient(circle, rgba(233,137,14,0.10) 1px, transparent 1px);
    background-size: auto, 28px 28px;
}

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
@keyframes float-robot {
    0%, 100% { transform: translateY(0px) scale(1.00); }
    50%       { transform: translateY(-10px) scale(1.01); }
}
@keyframes orb-breathe {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1);    }
    50%       { opacity: 1.0; transform: translateX(-50%) scale(1.10); }
}
@keyframes shimmer-sweep {
    0%   { transform: translateX(-150%) skewX(-8deg); }
    100% { transform: translateX(200%)  skewX(-8deg); }
}

.module-card-img img {
    animation: float-robot 4.5s ease-in-out infinite;
}
.module-card:nth-child(2) .module-card-img img { animation-delay: -1.5s; }
.module-card:nth-child(3) .module-card-img img { animation-delay: -3.0s; }
.module-card:nth-child(4) .module-card-img img { animation-delay: -4.2s; }

.hero-orb-a { animation: orb-breathe 7s ease-in-out infinite; }
.hero-orb-b { animation: orb-breathe 9s ease-in-out infinite; animation-delay: -4s; }

/* Shimmer em botões primários */
.btn-cta, .btn-cta-vitalicio, .btn-primary { position: relative; overflow: hidden; }
.btn-cta::after, .btn-cta-vitalicio::after, .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: translateX(-150%) skewX(-8deg);
    pointer-events: none;
}
.btn-cta:hover::after,
.btn-cta-vitalicio:hover::after,
.btn-primary:hover::after {
    animation: shimmer-sweep 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
                transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }

/* =========================================================
   TIPOGRAFIA — escala e gradiente por página
   ========================================================= */
.section-h2 { font-size: clamp(2.6rem, 6vw, 4.2rem); }

.section-heading::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    margin: 20px auto 0;
    border-radius: 1px;
}

body.page-robos .section-h2,
body.page-planos .section-h2 {
    background: linear-gradient(135deg, #ffffff 45%, #fee486 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================================
   MODULE CARD — hover mais dramático
   ========================================================= */
.module-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(233,137,14,0.5) !important;
    box-shadow:
        0 28px 72px rgba(0,0,0,0.55),
        0 0 0 1px rgba(233,137,14,0.22),
        0 0 56px rgba(233,137,14,0.14) !important;
}

/* =========================================================
   HERO — scan overlay
   ========================================================= */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(0deg,
        transparent 0, transparent 3px,
        rgba(233,137,14,0.008) 3px, rgba(233,137,14,0.008) 4px);
}

/* =========================================================
   IMAGE UPLOAD (admin)
   ========================================================= */
.img-upload-area {
    border: 2px dashed var(--border-md);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 110px;
    justify-content: center;
}
.img-upload-area:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
}
.img-upload-area span { font-size: 13px; font-weight: 600; color: #cdd6f4; }
.img-upload-area small { font-size: 11px; color: #585b70; }

/* =========================================================
   GITHUB CONFIG PANEL (admin)
   ========================================================= */
.github-config-panel {
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    margin-bottom: 28px;
    overflow: hidden;
}
.github-config-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #cdd6f4;
    transition: var(--transition);
}
.github-config-header:hover { background: rgba(255,255,255,0.02); }
.github-config-header i.fa-github { color: var(--color-primary); font-size: 15px; }
.github-config-header i.fa-chevron-down { margin-left: auto; color: #585b70; font-size: 11px; transition: var(--transition); }
.github-config-header.open i.fa-chevron-down { transform: rotate(180deg); }
.gh-status {
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.gh-status.ok {
    background: rgba(34,197,94,0.12);
    color: var(--color-success);
    border-color: rgba(34,197,94,0.2);
}
.github-config-body {
    padding: 0 18px 16px;
    border-top: 1px solid var(--border-color);
}
.github-config-body p {
    font-size: 12px;
    color: #585b70;
    margin: 12px 0 10px;
    line-height: 1.5;
}

/* =========================================================
   FOOTER — mais distinto
   ========================================================= */
footer {
    background: rgba(5,5,10,0.98) !important;
    border-top: 1px solid rgba(233,137,14,0.10) !important;
}

@media (max-width: 768px) {
    .section-h2 { font-size: clamp(2rem, 9vw, 3rem); }
    .module-card:hover { transform: translateY(-4px) !important; }
}
.news-error-state a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}
.news-error-state a:hover { text-decoration: underline; }

.calendar-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    margin-bottom: 48px;
}
.calendar-wrap iframe {
    width: 100%;
    border: none;
    display: block;
}

/* =========================================================
   MERCADO STATUS BADGE
   ========================================================= */
.market-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.market-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.market-status-badge.open {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
}
.market-status-badge.closed {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #ef4444;
}
.market-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
.market-status-badge.open .market-status-dot {
    animation: pulse-open 1.5s infinite;
}
@keyframes pulse-open { 0%,100%{opacity:1} 50%{opacity:.2} }

.market-auto-note {
    font-size: 12px;
    color: #8890b0;
    font-family: var(--font-mono);
}

/* =========================================================
   NEWS MODAL (leitor interno)
   ========================================================= */
.news-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    backdrop-filter: blur(6px);
}
.news-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.news-modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow-md);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px);
    transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.news-modal-overlay.open .news-modal-card {
    transform: translateY(0);
}
.news-modal-close {
    position: sticky;
    top: 12px;
    float: right;
    margin: 12px 12px 0 0;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border-color);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-modal-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.news-modal-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    display: block;
}
.news-modal-body {
    padding: 24px 28px 36px;
}
.news-modal-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.news-modal-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: #f0f0f8;
    letter-spacing: -0.03em;
    line-height: 1.35;
    margin-bottom: 18px;
}
.news-modal-content {
    color: #d0d4e8;
    font-size: 14px;
    line-height: 1.85;
}
.news-modal-content p { margin-bottom: 12px; }
.news-modal-content img { max-width: 100%; border-radius: 8px; margin: 8px 0; }
.news-modal-content a { color: var(--color-primary); }
.news-modal-source-note {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 11px;
    color: #8890b0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Track Record & Risk ─────────────────────────────────────────────────── */
.track-record-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0 4px;
}
.risk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(233,137,14,0.10);
    border: 1px solid rgba(233,137,14,0.28);
    color: #e9890e;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    width: fit-content;
}
.track-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.track-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-md);
    color: var(--color-text);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.track-btn:hover {
    border-color: var(--color-primary);
    background: rgba(233,137,14,0.08);
    color: var(--color-primary);
}
.track-pending {
    font-size: 11px;
    color: #4a5070;
    margin: 0;
    font-style: italic;
}

/* ── Robot Videos (detalhe do robô) ──────────────────────────────────────── */
.robot-videos {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.videos-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.videos-title i { color: var(--color-primary); }
.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 500px) { .videos-grid { grid-template-columns: 1fr; } }
.video-card-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.video-card-mini span {
    font-size: 11px;
    color: var(--color-text-dim);
    text-align: center;
}

/* ── Admin Tabs ──────────────────────────────────────────────────────────── */
.admin-tabs {
    display: flex;
    gap: 8px;
    margin: 20px 0 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}
.admin-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--color-text-dim);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px 12px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
}
.admin-tab:hover { color: #fff; }
.admin-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}
.tab-pane { margin-top: 20px; }
.tab-pane.hidden { display: none !important; }

/* ==========================================================================
   BORDAS ARREDONDADAS — TODAS AS IMAGENS DE CONTEÚDO, TODAS AS PÁGINAS
   ========================================================================== */

/* Imagens de robô nos cards */
.module-card-img img,
.specs-img-container img,
.activation-thumb,
.plano-thumb,
.table-img {
    border-radius: 14px;
}

/* Hero robot */
.hero-robot-img { border-radius: 20px; }

/* News / notícias */
.news-card-img,
.news-modal-img { border-radius: 14px; }

/* Vídeos */
.video-embed-wrap { border-radius: 12px; overflow: hidden; }
.video-card       { border-radius: 16px; overflow: hidden; }

/* Home cream: container do card precisa de fundo visível para a borda arredondar */
body.page-home .module-card-img {
    background: rgba(0,0,0,0.05) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    padding: 12px;
}

/* ==========================================================================
   HOME PAGE — REDESIGN 2026 — DESIGN ÚNICO, NÃO GENÉRICO
   ========================================================================== */

/* ── Hero: Split layout esquerda/direita ──────────────────────────────────── */
body.page-home .hero-section {
    text-align: left;
    align-items: stretch;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 92px);
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
    animation: fade-up 0.7s var(--ease-out) both;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 56px;
}

body.page-home .hero-text-col .badge { margin-bottom: 28px; }

body.page-home .hero-text-col .hero-h1 {
    align-items: flex-start;
    margin-bottom: 24px;
}

body.page-home .hero-text-col .hero-h1-main {
    font-size: clamp(4rem, 8vw, 7.8rem);
    line-height: 0.88;
    letter-spacing: -0.05em;
    text-align: left;
}

body.page-home .hero-text-col .hero-h1-pre {
    text-align: left;
}

body.page-home .hero-text-col .hero-body {
    text-align: left;
    margin: 0 0 40px;
    max-width: 480px;
}

body.page-home .hero-text-col .hero-ctas {
    justify-content: flex-start;
    margin-bottom: 0;
}

.hero-img-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.hero-robot-stage {
    position: relative;
    width: 100%;
    max-width: 520px;
}

/* Halo atrás do robô */
.hero-robot-stage::before {
    content: '';
    position: absolute;
    inset: -10%;
    background: radial-gradient(ellipse at 50% 60%,
        rgba(233,137,14,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-robot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 64px rgba(233,137,14,0.22));
    animation: float-robot 5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* Stats strip na base do hero */
.hero-stats-strip {
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.3);
    padding: 28px 0;
    position: relative;
    z-index: 1;
}

.hero-stats-inner {
    display: flex;
    align-items: center;
}

.hstat-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.hstat-block:first-child { padding-left: 0; }
.hstat-block:last-child  { border-right: none; }

.hstat-block .hstat-val {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.04em;
    line-height: 1;
}

.hstat-block .hstat-val sup,
.hstat-block .hstat-val sub {
    font-size: 0.42em;
    font-weight: 700;
    vertical-align: super;
    letter-spacing: -0.01em;
}

.hstat-block .hstat-label {
    font-size: 10px;
    color: #45475a;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

/* ── Manifesto Strip ──────────────────────────────────────────────────────── */
.manifesto-strip {
    background: #05050a;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 72px 0;
    overflow: hidden;
    position: relative;
}

/* Linhas verticais editoriais */
.manifesto-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0, transparent 159px,
        rgba(255,255,255,0.015) 159px,
        rgba(255,255,255,0.015) 160px
    );
    pointer-events: none;
}

.manifesto-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    font-weight: 800;
    color: #f0f0f8;
    letter-spacing: -0.04em;
    line-height: 1.05;
    max-width: 900px;
}

.manifesto-text em {
    font-style: normal;
    color: var(--color-primary);
}

/* ── Módulos Section — Fundo Creme ────────────────────────────────────────── */
body.page-home .modules-section {
    background: #f2ede3 !important;
    border-top: none;
    padding: 80px 0 100px;
    /* Sem dot-grid — fundo limpo */
    position: relative;
}

body.page-home .modules-section .section-heading {
    text-align: left;
    margin-bottom: 56px;
}

body.page-home .modules-section .section-heading::after {
    margin-left: 0;
    margin-right: auto;
}

body.page-home .modules-section .section-h2 {
    color: #1c1612 !important;
    background: none !important;
    -webkit-text-fill-color: #1c1612 !important;
}

body.page-home .modules-section .badge {
    background: rgba(180,100,0,0.10);
    border-color: rgba(180,100,0,0.22);
    color: #8a4e00;
}

body.page-home .modules-section .section-sub {
    color: rgba(0,0,0,0.45);
    margin-left: 0;
    text-align: left;
}

/* Cards viram linhas horizontais (imagem esquerda, texto direita) */
body.page-home .module-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.page-home .module-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    column-gap: 56px;
    row-gap: 10px;
    padding: 60px 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transform: none !important;
    transition: background 0.2s ease;
}

body.page-home .module-card:last-child { border-bottom: none; }

body.page-home .module-card:hover {
    background: rgba(0,0,0,0.025) !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: rgba(0,0,0,0.08) !important;
}

body.page-home .module-card::before { display: none; }
body.page-home .module-card .robot-videos { display: none; }

/* Cards pares: imagem direita, texto esquerda */
body.page-home .module-card:nth-child(even) {
    grid-template-columns: 1fr 260px;
}
body.page-home .module-card:nth-child(even) .module-card-img {
    grid-column: 2;
    grid-row: 1 / 7;
}
body.page-home .module-card:nth-child(even) .module-card-head,
body.page-home .module-card:nth-child(even) .module-card-market,
body.page-home .module-card:nth-child(even) .module-card-desc,
body.page-home .module-card:nth-child(even) .track-record-section,
body.page-home .module-card:nth-child(even) .module-card-prices {
    grid-column: 1;
}

/* Coluna de imagem */
body.page-home .module-card-img {
    grid-column: 1;
    grid-row: 1 / 7;
    height: auto;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.page-home .module-card-img::after { display: none; }

body.page-home .module-card-img img {
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.18));
    max-height: 280px;
    animation: float-robot 5s ease-in-out infinite;
}

/* Texto — coluna direita */
body.page-home .module-card-head {
    grid-column: 2;
    grid-row: 1;
    flex-wrap: wrap;
    gap: 8px;
}

body.page-home .module-card-name {
    font-size: clamp(2rem, 3vw, 3rem);
    color: #1c1612;
    letter-spacing: -0.04em;
    line-height: 1;
}

body.page-home .module-card-tag {
    background: rgba(180,100,0,0.10);
    border-color: rgba(180,100,0,0.22);
    color: #8a4e00;
    font-size: 11px;
}

body.page-home .module-card-market {
    grid-column: 2;
    grid-row: 2;
    color: rgba(0,0,0,0.38);
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.07);
}

body.page-home .module-card-desc {
    grid-column: 2;
    grid-row: 3;
    color: rgba(0,0,0,0.52);
    font-size: 15px;
    line-height: 1.75;
}

body.page-home .track-record-section {
    grid-column: 2;
    grid-row: 4;
}

body.page-home .risk-badge {
    background: rgba(180,100,0,0.08);
    border-color: rgba(180,100,0,0.20);
    color: #8a4e00;
}

body.page-home .track-btn {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.12);
    color: #3a3020;
}
body.page-home .track-btn:hover {
    background: rgba(180,100,0,0.10);
    border-color: rgba(180,100,0,0.35);
    color: #8a4e00;
}
body.page-home .track-pending { color: rgba(0,0,0,0.35); }

body.page-home .module-card-prices {
    grid-column: 2;
    grid-row: 5;
    border-top: none;
    padding-top: 0;
    flex-direction: row;
    gap: 12px;
}

/* CTAs no creme — invertidos */
body.page-home .btn-cta-vitalicio {
    flex: 1;
    background: #1c1612;
    color: #f2ede3;
    border-radius: 8px;
}
body.page-home .btn-cta-vitalicio:hover {
    background: #2a1e10;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    transform: translateY(-1px);
}
body.page-home .btn-cta-vitalicio::after { display: none; }

body.page-home .btn-cta-mensal {
    flex: 1;
    color: #1c1612;
    border: 1.5px solid rgba(0,0,0,0.18);
    background: transparent;
}
body.page-home .btn-cta-mensal:hover {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.32);
    transform: translateY(-1px);
}

body.page-home .home-cta-row {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    justify-content: flex-start;
}

/* ── Corretora 4XC — Fundo Âmbar Total ───────────────────────────────────── */
.broker-section {
    background: var(--color-primary) !important;
    border-top: none !important;
}

.broker-section .badge {
    background: rgba(0,0,0,0.10);
    border-color: rgba(0,0,0,0.14);
    color: rgba(0,0,0,0.60);
}

.broker-section .badge::before {
    background: rgba(0,0,0,0.4);
    box-shadow: none;
}

.broker-section .section-h2 {
    color: #0a0500 !important;
    background: none !important;
    -webkit-text-fill-color: #0a0500 !important;
}

.broker-section .section-sub,
.broker-section p,
.broker-section .broker-cta-note {
    color: rgba(0,0,0,0.60) !important;
}

.broker-section .broker-logo-badge-name { color: #0a0500; }
.broker-section .broker-logo-badge-tag  { color: rgba(0,0,0,0.50); border-left-color: rgba(0,0,0,0.14); }

.broker-section .broker-adv-card {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.30);
    backdrop-filter: blur(8px);
}
.broker-section .broker-adv-card:hover {
    background: rgba(255,255,255,0.32);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    border-color: rgba(255,255,255,0.45) !important;
}
.broker-section .broker-adv-card i      { color: #0a0500; }
.broker-section .broker-adv-card strong { color: #0a0500; }
.broker-section .broker-adv-card p      { color: rgba(0,0,0,0.58); }

.broker-section .btn-cta {
    background: #0a0500 !important;
    color: var(--color-primary) !important;
}
.broker-section .btn-cta:hover {
    background: #1a0e04 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.40) !important;
}
.broker-section .btn-cta::after { display: none; }

/* Inline div do badge 4XC */
.broker-logo-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 14px;
    padding: 12px 28px;
    margin: 20px auto 0;
}

/* ── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-split {
        grid-template-columns: 1fr;
        padding: 60px 0 40px;
        gap: 40px;
    }
    .hero-text-col {
        padding-right: 0;
        align-items: center;
        text-align: center;
    }
    body.page-home .hero-text-col .hero-h1      { align-items: center; }
    body.page-home .hero-text-col .hero-h1-main { text-align: center; }
    body.page-home .hero-text-col .hero-body    { text-align: center; max-width: none; }
    body.page-home .hero-text-col .hero-ctas    { justify-content: center; }
    .hero-img-col  { order: -1; justify-content: center; }
    .hero-robot-img { max-height: 280px; width: auto; }

    .hstat-block { padding: 0 16px; }

    .manifesto-text { font-size: clamp(1.8rem, 7vw, 3rem); }

    body.page-home .module-card,
    body.page-home .module-card:nth-child(even) {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        row-gap: 16px;
        padding: 40px 0;
    }

    body.page-home .module-card-img,
    body.page-home .module-card:nth-child(even) .module-card-img {
        grid-column: 1;
        grid-row: auto;
        max-width: 180px;
        margin: 0 auto;
    }
    body.page-home .module-card-head,
    body.page-home .module-card-market,
    body.page-home .module-card-desc,
    body.page-home .track-record-section,
    body.page-home .module-card-prices,
    body.page-home .module-card:nth-child(even) .module-card-head,
    body.page-home .module-card:nth-child(even) .module-card-market,
    body.page-home .module-card:nth-child(even) .module-card-desc,
    body.page-home .module-card:nth-child(even) .track-record-section,
    body.page-home .module-card:nth-child(even) .module-card-prices {
        grid-column: 1;
        grid-row: auto;
    }
    body.page-home .module-card-prices { flex-direction: column; }
    body.page-home .home-cta-row       { justify-content: center; }
    body.page-home .modules-section .section-heading,
    body.page-home .modules-section .section-sub { text-align: center; margin: 0 auto; }
    body.page-home .modules-section .section-heading::after { margin: 20px auto 0; }
}
