/* style.css */
/* Design Premium para Proposta Unilever + LSLog */
/* Eduardo dos santos - Megamil para LSLog (Totalmente anônimo para a Unilever) */

:root {
    --bg-main: #080a11;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --color-primary: #ef5037; /* Laranja Primário LSLog */
    --color-accent: #d43d25;  /* Laranja Escuro LSLog */
    --color-glow: #f26d56;    /* Laranja Claro LSLog */
    --color-text-main: #ffffff;
    --color-text-muted: #9ca3af;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --font-primary: 'Outfit', sans-serif;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 10, 19, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: var(--transition-fast);
}

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

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

.logo-icon {
    font-size: 24px;
    color: var(--color-glow);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.4);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--color-glow);
}

.badge {
    background: rgba(96, 165, 250, 0.15);
    color: var(--color-glow);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text-main);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(239, 80, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 80, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-dark {
    background: #111827;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
    background: #1f2937;
}

.btn-outline {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-success {
    background: var(--color-success);
    color: #fff;
}

.btn-success:hover:not(.disabled) {
    background: #059669;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn.disabled, .btn[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Glassmorphism Card Base */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-glow-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 80, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(50px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(242, 109, 86, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(50px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 109, 86, 0.08);
    color: var(--color-glow);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(242, 109, 86, 0.15);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #fff 30%, var(--color-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 580px;
}

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

/* Visual da Hero */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.visual-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 80, 55, 0.25) 0%, rgba(7, 10, 19, 0.8) 100%);
    border: 2px dashed rgba(242, 109, 86, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.central-concept-icon {
    font-size: 54px;
    color: var(--color-glow);
    text-shadow: 0 0 15px rgba(242, 109, 86, 0.5);
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(242, 109, 86, 0.2);
    animation: pulse 3s infinite linear;
}

.visual-card-1 {
    position: absolute;
    top: -10px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    z-index: 3;
}

.visual-card-2 {
    position: absolute;
    bottom: -10px;
    right: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    z-index: 3;
}

.card-icon {
    width: 36px;
    height: 36px;
    background: rgba(239, 80, 55, 0.15);
    color: var(--color-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.card-icon.success {
    background: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

.card-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.card-info p {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.bg-light-dark {
    background-color: #0c1020;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.text-center {
    text-center: center;
    text-align: center;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    text-align: center;
    padding: 40px 30px;
}

.pillar-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(242, 109, 86, 0.2);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 80, 55, 0.15);
    color: var(--color-glow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(242, 109, 86, 0.1);
}

.pillar-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.pillar-card p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Flow Tabs */
.tabs-container {
    width: 100%;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.06);
}

.tab-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-accent);
    box-shadow: 0 4px 10px rgba(239, 80, 55, 0.25);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Timeline Flow */
.flow-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    padding-top: 20px;
}

.flow-timeline::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0e1529;
    border: 2px solid var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-glow);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
}

.timeline-step:hover .step-num {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
}

.timeline-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-step p {
    color: var(--color-text-muted);
    font-size: 13px;
}

/* ==========================================================================
   SIMULADOR DE TELAS
   ========================================================================== */

.simulator-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    padding: 0;
    overflow: hidden;
    height: 550px;
}

.simulator-sidebar {
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 10px;
}

.sim-nav-btn {
    background: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-primary);
    color: var(--color-text-muted);
    text-align: left;
    transition: var(--transition-fast);
    width: 100%;
}

.sim-nav-btn i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.sim-nav-info {
    display: flex;
    flex-direction: column;
}

.sim-nav-info span {
    font-size: 14px;
    font-weight: 600;
}

.sim-nav-info small {
    font-size: 11px;
    color: #6b7280;
}

.sim-nav-btn:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-main);
}

.sim-nav-btn.active {
    background: rgba(239, 80, 55, 0.15);
    border-color: rgba(242, 109, 86, 0.2);
    color: var(--color-glow);
}

.sim-nav-btn.active small {
    color: var(--color-glow);
}

.simulator-screen {
    background: #0f172a;
    position: relative;
    overflow-y: auto;
}

.sim-screen-content {
    display: none;
    height: 100%;
    animation: fadeIn 0.3s ease-in-out;
}

.sim-screen-content.active {
    display: flex;
    flex-direction: column;
}

/* Padrão Portal Header */
.portal-header {
    background: #1e293b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
}

.portal-user {
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portal-body {
    padding: 24px;
    flex-grow: 1;
}

/* Tela 1: Decisão SAC */
.ocorrencia-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}

.oc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.oc-id {
    font-size: 16px;
    font-weight: 700;
}

.oc-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.oc-badge.status-alert {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.oc-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.oc-info-grid strong {
    color: var(--color-text-main);
}

.comparison-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.comparison-box h4 {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.comp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 12px;
}

.comp-item {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}

.comp-item.bg-recompensa {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.comp-item.bg-perda {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.comp-label {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.comp-val {
    font-size: 20px;
    font-weight: 800;
}

.comp-item.bg-recompensa .comp-val {
    color: var(--color-success);
}

.comp-item.bg-perda .comp-val {
    color: var(--color-danger);
}

.comp-item small {
    font-size: 10px;
    color: #6b7280;
}

.saving-msg {
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: var(--color-glow);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.saving-msg.alert-reembolso {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
    color: var(--color-warning);
}

.orçamento-form-box {
    margin-bottom: 20px;
    font-size: 13px;
}

.orçamento-form-box label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.input-group {
    display: flex;
    max-width: 320px;
}

.input-addon {
    background: #334155;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px 0 0 6px;
    color: var(--color-text-muted);
}

.input-group input {
    flex-grow: 1;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    font-family: var(--font-primary);
}

.input-group input:focus {
    outline: none;
    border-color: var(--color-glow);
}

.input-group button {
    border-radius: 0 6px 6px 0;
}

.oc-actions {
    display: flex;
    gap: 12px;
}

/* Tela 2: App do Motorista (Mockup Celular) */
.phone-mockup {
    width: 290px;
    height: 480px;
    background: #000;
    border: 8px solid #1e293b;
    border-radius: 28px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.phone-speaker {
    width: 60px;
    height: 12px;
    background: #0f172a;
    border-radius: 10px;
    position: absolute;
    top: 6px;
    left: calc(50% - 30px);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 14px;
}

.app-header {
    background: #1e293b;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-title {
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-glow);
}

.app-body {
    padding: 14px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.app-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 12px;
}

.app-card-title {
    font-size: 12px;
    font-weight: 700;
}

.app-card-subtitle {
    font-size: 10px;
    color: var(--color-text-muted);
}

.app-instruction {
    font-size: 10px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.photo-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.photo-slot {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    font-size: 8px;
    color: var(--color-text-muted);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.photo-slot span {
    padding: 0 2px;
}

.photo-slot:hover {
    background: rgba(242, 109, 86, 0.05);
    border-color: var(--color-glow);
}

.camera-icon {
    font-size: 14px;
    color: var(--color-glow);
}

.photo-preview {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: none;
    z-index: 5;
}

.photo-slot.has-photo {
    border-style: solid;
    border-color: var(--color-success);
}

.photo-slot.has-photo .photo-preview {
    display: block;
}

/* Tela 3: Auditoria por IA */
.ia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    height: 100%;
}

.ia-selector-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ia-selector-box h4 {
    font-size: 14px;
    font-weight: 600;
}

.asset-selector-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.asset-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 13px;
}

.asset-item i {
    width: 16px;
    color: var(--color-text-muted);
}

.asset-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.asset-item.active {
    background: rgba(239, 80, 55, 0.15);
    border-color: rgba(242, 109, 86, 0.2);
    font-weight: 600;
}

.asset-item.active i {
    color: var(--color-glow);
}

.ia-result-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ia-result-box h4 {
    font-size: 14px;
    font-weight: 600;
}

.asset-preview-image {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    aspect-ratio: 1.5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-preview-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.ia-scan-effect {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-glow), transparent);
    box-shadow: 0 0 10px var(--color-glow);
    z-index: 10;
    display: none;
}

.scanning .ia-scan-effect {
    display: block;
    animation: scan 2s infinite ease-in-out;
}

@keyframes scan {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.ia-output-results {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 12px 16px;
    animation: fadeIn 0.4s ease;
}

.ia-output-results h5 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-glow);
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 6px;
}

.result-row:last-child {
    border: none;
    margin-bottom: 0;
}

.progress-container {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-right: 8px;
}

.progress-bar {
    height: 100%;
    border-radius: 10px;
}

.progress-bar.bg-danger { background-color: var(--color-danger); }
.progress-bar.bg-warning { background-color: var(--color-warning); }
.progress-bar.bg-success { background-color: var(--color-success); }

.badge-primary {
    background: rgba(239, 80, 55, 0.15);
    color: var(--color-glow);
    border: 1px solid rgba(242, 109, 86, 0.2);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Tela 4: Status Tracker Stepper */
.tracker-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
}

.tracker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.tracker-header h4 {
    font-size: 15px;
    font-weight: 700;
}

.destinos-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.destinos-info strong {
    color: var(--color-text-main);
}

.stepper-horizontal {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.stepper-horizontal::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 4%;
    width: 92%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.stepper-horizontal .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
}

.step-label {
    font-size: 10px;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.stepper-horizontal .step.active .step-circle {
    background: var(--color-primary);
    border-color: var(--color-glow);
    color: #fff;
    box-shadow: 0 0 15px rgba(239, 80, 55, 0.4);
}

.stepper-horizontal .step.active .step-label {
    color: var(--color-text-main);
    font-weight: 600;
}

.tracker-controls {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================================================
   SEGURANÇA E FOOTER
   ========================================================================== */

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.sec-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition-fast);
}

.sec-item:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 109, 86, 0.15);
}

.sec-icon {
    font-size: 32px;
    color: var(--color-glow);
    margin-bottom: 20px;
}

.sec-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sec-item p {
    color: var(--color-text-muted);
    font-size: 13px;
}

.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo-icon {
    font-size: 20px;
    color: var(--color-glow);
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
}

.footer-logo-text span {
    color: var(--color-glow);
}

.footer-brand p {
    font-size: 12px;
}

.q-mt-md { margin-top: 16px; }
.q-ml-sm { margin-left: 8px; }

/* Responsivo */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-description {
        margin: 0 auto 36px auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .pillars-grid, .security-grid {
        grid-template-columns: 1fr;
    }
    .flow-timeline {
        grid-template-columns: 1fr;
    }
    .flow-timeline::after {
        display: none;
    }
    .simulator-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    .simulator-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }
    .sim-nav-btn {
        flex-shrink: 0;
        width: auto;
    }
    .ia-grid {
        grid-template-columns: 1fr;
    }
}
