@font-face {
    font-family: 'Lufga';
    src: local('Lufga Regular'), local('Lufga-Regular'),
         url('fonts/Lufga-Regular.woff2') format('woff2'),
         url('fonts/Lufga-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: local('Lufga Light'), local('Lufga-Light'),
         url('fonts/Lufga-Light.woff2') format('woff2'),
         url('fonts/Lufga-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Design System & Variables - Cobrasis Premium CSS
   ========================================================================== */
:root {
    /* Colors */
    --bg-dark: #050814;
    --bg-card: rgba(14, 23, 50, 0.65);
    --bg-input: rgba(10, 15, 36, 0.8);
    --border-color: rgba(0, 210, 255, 0.15);
    --border-hover: rgba(0, 210, 255, 0.4);
    
    --primary: #0066ff;
    --primary-glow: rgba(0, 102, 255, 0.4);
    --accent: #00d2ff;
    --accent-glow: rgba(0, 210, 255, 0.3);
    --accent-green: #00ff88;
    --accent-green-glow: rgba(0, 255, 136, 0.2);
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0066ff 0%, #00d2ff 100%);
    --grad-dark: linear-gradient(180deg, #050814 0%, #0c1530 100%);
    --grad-card: linear-gradient(145deg, rgba(14, 23, 50, 0.8) 0%, rgba(8, 12, 30, 0.8) 100%);
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--grad-dark);
    color: var(--text-primary);
    font-family: 'Lufga', 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================================================
   Background Tech Effects
   ========================================================================== */
.tech-bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.15;
    pointer-events: none;
    z-index: -2;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.18;
    z-index: -1;
    mix-blend-mode: screen;
}

.orb-1 {
    top: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(0, 102, 255, 0) 70%);
    animation: floatOrb 15s infinite alternate ease-in-out;
}

.orb-2 {
    top: 40%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(0, 210, 255, 0) 75%);
    animation: floatOrb 20s infinite alternate-reverse ease-in-out;
}

.orb-3 {
    bottom: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent) 0%, rgba(0, 255, 136, 0) 70%);
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.1); }
}

/* ==========================================================================
   Typography & Common Elements
   ========================================================================== */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.05);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.section-tag {
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #00d2ff !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-bottom: 16px !important;
    padding: 6px 18px !important;
    border-radius: 20px !important;
    background: rgba(0, 210, 255, 0.12) !important;
    border: 1px solid rgba(0, 210, 255, 0.25) !important;
    width: auto !important;
}

.section-title {
    font-size: 2.4rem !important;
    margin-bottom: 16px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.section-subtitle {
    font-size: 1.05rem !important;
    color: #cbd5e1 !important;
    max-width: 650px !important;
    margin: 0 auto 40px !important;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-weight: 400;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6), 0 0 15px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}

.btn-tertiary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(5, 8, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

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

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

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.logo-text .highlight {
    color: var(--accent);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features-list {
    display: flex;
    gap: 32px;
}

.h-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feat-icon {
    color: var(--accent-green);
    width: 18px;
    height: 18px;
}

/* 3D Tech Card Visual */
.hero-visual {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.tech-card-3d {
    width: 100%;
    max-width: 420px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    position: relative;
}

.tech-card-3d:hover {
    transform: rotateY(-10deg) rotateX(10deg);
}

.card-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--grad-primary);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.4;
    filter: blur(15px);
    transition: var(--transition-normal);
}

.tech-card-3d:hover .card-glow {
    filter: blur(25px);
    opacity: 0.7;
}

.card-inner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(16px);
}

.card-header-sim {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.title-sim {
    font-size: 0.75rem;
    font-family: 'Lufga', 'Outfit', sans-serif;
    color: var(--text-muted);
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.chart-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 4px;
}

.chart-value {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-family: 'Lufga', 'Outfit', sans-serif;
}

.chart-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 4px 8px;
    border-radius: 4px;
}

.chart-trend.positive {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-green);
}

.visual-graph {
    width: 100%;
    margin-bottom: 20px;
}

.graph-svg {
    width: 100%;
    height: auto;
}

.pulse-point {
    animation: pointPulse 2s infinite ease-in-out;
    transform-origin: center;
}

@keyframes pointPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.active-channels {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.channel-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
}

.channel-icons {
    display: flex;
    gap: 12px;
}

.c-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.c-badge i {
    width: 12px;
    height: 12px;
}

.c-badge.active {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(14, 23, 50, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.1);
}

.stat-icon-tech {
    width: 32px;
    height: 32px;
    color: var(--accent);
    margin-bottom: 4px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.stat-number {
    font-size: 3rem;
    font-family: 'Lufga', 'Outfit', sans-serif;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-weight: 400;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.05);
}

.feat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feat-icon-wrapper i {
    width: 28px;
    height: 28px;
}

.feature-card:hover .feat-icon-wrapper {
    background: var(--grad-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px var(--accent-glow);
    border-color: transparent;
}

.feat-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.feat-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.feat-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.feature-card:hover .feat-glow {
    opacity: 1;
}

/* ==========================================================================
   Simulator Section (Autonegociação)
   ========================================================================== */
.simulator-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(5, 8, 20, 0) 0%, rgba(12, 21, 48, 0.4) 50%, rgba(5, 8, 20, 0) 100%);
}

.simulator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sim-info .section-title {
    margin-bottom: 24px;
}

.sim-perks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.perk-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.perk-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 210, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.perk-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Simulator Card */
.sim-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.sim-card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.lock-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
}

.sim-card-body {
    padding: 32px;
}

.sim-group {
    margin-bottom: 28px;
}

.sim-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 12px;
    font-weight: 300;
}

.debt-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.debt-opt-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition-fast);
}

.debt-opt-btn:hover {
    border-color: var(--accent);
    background: rgba(0, 210, 255, 0.05);
}

.debt-opt-btn.active {
    background: var(--grad-primary);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.slider-value {
    color: var(--accent);
    font-weight: 400;
    font-family: 'Lufga', 'Outfit', sans-serif;
}

/* Custom Range Slider */
.custom-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent);
    transition: transform 0.1s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.custom-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent);
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Summary Box */
.sim-summary {
    background: rgba(5, 8, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-row.highlight-green {
    color: var(--accent-green);
    font-weight: 400;
}

.summary-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 12px 0;
}

.total-row {
    margin-bottom: 0;
}

.total-row span {
    font-weight: 400;
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.total-val {
    color: var(--accent) !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

.installment-row {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Output details box */
.payment-details-box {
    margin-top: 24px;
    border: 1px dashed var(--border-color);
    background: rgba(0, 210, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 20px;
    animation: slideDown 0.4s ease-out forwards;
}

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

.payment-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.pay-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 400;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.pay-tab.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 210, 255, 0.08);
}

.pay-instruction {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: center;
}

.qr-code-wrapper, .barcode-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.qr-code-placeholder {
    padding: 12px;
    background: #0c1530;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
}

.copy-pix-area {
    display: flex;
    width: 100%;
    gap: 8px;
}

.copy-pix-area input {
    flex-grow: 1;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    outline: none;
    text-overflow: ellipsis;
}

/* Barcode CSS rendering */
.barcode-lines {
    height: 60px;
    background: #0c1530;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.bar {
    height: 100%;
    background: #00d2ff;
}

.bar-thin { width: 2px; }
.bar-medium { width: 4px; }
.bar-thick { width: 7px; }

/* ==========================================================================
   Solutions Section (Tabs System)
   ========================================================================== */
.solutions-section {
    padding: 100px 0;
}

.solutions-tabs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 12px 24px;
    cursor: pointer;
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

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

.tab-btn.active {
    color: var(--accent);
    background: rgba(0, 210, 255, 0.08);
    box-shadow: inset 0 0 10px rgba(0, 210, 255, 0.1);
}

.tab-content-panel {
    display: none;
}

.tab-content-panel.active {
    display: block;
    animation: fadeIn 0.5s ease-out forwards;
}

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

.panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.panel-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.panel-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

.panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.list-chk {
    color: var(--accent-green);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Panel Visual Chat/Dashboard simulation */
.panel-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

/* Simulated WhatsApp chat UI */
.simulated-chat {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.chat-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    position: relative;
}

.chat-bubble.bot {
    align-self: flex-start;
    background: #111e3b;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-bubble.user {
    align-self: flex-end;
    background: #0066ff;
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-bubble .time {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
    text-align: right;
}

.pix-badge-chat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px dashed var(--accent);
    color: var(--accent);
    padding: 10px 16px;
    border-radius: 8px;
    margin: 4px 0;
    font-weight: 400;
}

/* Simulated dashboard chart */
.simulated-dashboard {
    text-align: center;
}

.dash-circle-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.circular-chart {
    width: 120px;
    height: 120px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: var(--accent);
}

.percentage {
    fill: #fff;
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-size: 0.55em;
    font-weight: 400;
    text-anchor: middle;
}

.dash-lbl {
    font-weight: 400;
    font-size: 0.95rem;
}

/* Legal badge visual */
.legal-badge-card {
    text-align: center;
    padding: 20px;
}

.scale-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.legal-badge-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.legal-badge-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ==========================================================================
   Trust / Security Logos
   ========================================================================== */
.trust-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(14, 23, 50, 0.15);
}

.trust-title {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.logo-item:hover {
    color: var(--accent);
    opacity: 1;
}

.logo-item i {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* ==========================================================================
   Contact / Lead Capture
   ========================================================================== */
.contact-section {
    padding: 100px 0;
}

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

.contact-text .section-title {
    margin-bottom: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

.c-info-item i {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

/* Form Styling */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tech-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.form-group input, .form-group textarea, .form-group select {
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: var(--transition-normal);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
    background: rgba(14, 23, 50, 0.8);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: #03050c;
}

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

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

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.social-links a i {
    width: 16px;
    height: 16px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */
.animate-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features-list {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .panel-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.show-mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
    
    .show-mobile-only {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    /* Navigation drawer */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -340px !important;
        left: auto !important;
        width: 290px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: #050814 !important;
        border: none !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 90px 24px 40px 24px !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 999 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9) !important;
        overflow-y: auto !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }

    /* Backdrop Overlay for Mobile Menu */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 990;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Light Section Custom Overrides (White Backgrounds)
   ========================================================================== */
.features-section, .solutions-section, .feedback-section {
    background-color: #ffffff;
    background-image: none;
    color: #0f172a;
    position: relative;
    border: none; /* Removed harsh borders to fix Print 2 transition cut */
    padding: 100px 0;
}

/* Centered clean pill tags fixing Print 1 full-width stretch bug */
.features-section .section-tag, 
.solutions-section .section-tag, 
.feedback-section .section-tag {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.15);
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-section .section-title, 
.solutions-section .section-title, 
.feedback-section .section-title {
    color: #050814;
    margin-top: 10px;
}

.features-section .section-subtitle, 
.solutions-section .section-subtitle, 
.feedback-section .section-subtitle {
    color: #475569;
}

/* Features Section - Card Light Customizations */
.features-section .feature-card {
    background: #f8fafc;
    border: 1px solid rgba(0, 102, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.01);
}

.features-section .feature-card:hover {
    background: #ffffff;
    border-color: #00d2ff;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.06);
}

.features-section .feat-title {
    color: #050814;
}

.features-section .feat-desc {
    color: #475569;
}

.features-section .feat-icon-wrapper {
    background: rgba(0, 102, 255, 0.05);
    color: #0066ff;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

/* Solutions Section - Tabs & Panels Light Customizations */
.solutions-section .tab-btn {
    color: #64748b;
}

.solutions-section .tab-btn:hover {
    color: #050814;
    background: rgba(0, 102, 255, 0.02);
}

.solutions-section .tab-btn.active {
    color: #0066ff;
    background: rgba(0, 102, 255, 0.05);
    box-shadow: inset 0 0 10px rgba(0, 102, 255, 0.05);
}

.solutions-section .panel-text h3 {
    color: #050814;
}

.solutions-section .panel-text p {
    color: #475569;
}

.solutions-section .panel-list li {
    color: #475569;
}

.solutions-section .panel-visual {
    background: #f8fafc;
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.solutions-section .simulated-chat .chat-bubble.bot {
    background: #e2e8f0;
    color: #050814;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.solutions-section .simulated-chat .chat-bubble.bot .time {
    color: #64748b;
}

.solutions-section .simulated-chat .chat-bubble.user {
    background: #0066ff;
    color: #ffffff;
}

.solutions-section .simulated-chat .chat-bubble.user .time {
    color: rgba(255, 255, 255, 0.7);
}

.solutions-section .dash-lbl {
    color: #050814;
}

.solutions-section .percentage {
    fill: #050814;
}

.solutions-section .legal-badge-card h4 {
    color: #050814;
}

.solutions-section .legal-badge-card p {
    color: #475569;
}

/* ==========================================================================
   Feedback / Testimonials Marquee Styling (Light Theme with Photos)
   ========================================================================== */
.feedback-section {
    overflow: hidden;
    border: none;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Fade mask on the edges */
.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-container {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: marqueeScroll 35s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.feedback-card {
    width: 380px;
    background: #f8fafc;
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.01);
    transition: var(--transition-normal);
    white-space: normal; /* Override marquee nowrap */
    flex-shrink: 0;
}

.feedback-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.05);
}

.feedback-card .stars {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #e2e8f0;
}

.star-icon.filled {
    color: #eab308;
    fill: #eab308;
}

.feedback-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
}

.feedback-card .feedback-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.feedback-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 102, 255, 0.12);
    background: #e2e8f0;
    flex-shrink: 0;
}

.feedback-card .author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feedback-card .author-name {
    font-family: 'Lufga', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #050814;
    line-height: 1.2;
}

.feedback-card .author-company {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.2;
}

/* Smooth border transition fixes between sections */
.stats-section {
    border-bottom: none !important; /* Fixes Print 2 sharp border transition line */
}


/* ==========================================================================
   Logo Image Styling Overrides
   ========================================================================== */
.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-fast);
}

/* Shrink header logo image slightly on scroll */
.main-header.scrolled .logo-img {
    height: 30px;
}

/* Footer logo custom height */
.footer-logo {
    height: 30px;
}


/* ==========================================================================
   Como Funciona (Steps Timeline)
   ========================================================================== */
.how-it-works-section {
    background-color: var(--bg-dark);
    position: relative;
    padding: 100px 0;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

/* Connective line in desktop */
@media (min-width: 1025px) {
    .steps-timeline::before {
        content: '';
        position: absolute;
        top: 100px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 102, 255, 0.1) 100%);
        z-index: 1;
    }
}

.step-card {
    background: linear-gradient(145deg, #0a112a 0%, #050815 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.step-card:hover {
    background: rgba(0, 210, 255, 0.02);
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    color: rgba(0, 210, 255, 0.1);
    position: absolute;
    top: 15px;
    right: 25px;
    line-height: 1;
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--accent);
    transition: var(--transition-fast);
}

.step-card:hover .step-icon-wrapper {
    background: var(--grad-primary);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
    border-color: transparent;
}

.step-icon-wrapper i {
    width: 24px;
    height: 24px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Segmentos (Target Segments)
   ========================================================================== */
.segments-section {
    background-color: #ffffff;
    color: #0f172a;
    padding: 100px 0;
    position: relative;
}

.segments-section .section-title {
    color: #0f172a;
}

.segments-section .section-tag {
    background: rgba(0, 102, 255, 0.06);
    color: var(--primary);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.segment-card {
    padding: 40px 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.segment-card h3 {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.segment-card p {
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.6;
}

.segment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.segment-card:hover {
    background: #ffffff;
    border-color: rgba(0, 102, 255, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.04);
    transform: translateY(-5px);
}

.segment-card:hover .segment-icon {
    background: var(--primary);
    color: #ffffff;
}

/* ==========================================================================
   Segurança & Compliance
   ========================================================================== */
.security-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.security-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.security-checklist {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.security-checklist li {
    display: flex;
    gap: 20px;
}

.security-checklist li i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}

.security-checklist h4 {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.security-checklist p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.security-visual-card {
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.badge-icon-huge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.06);
    border: 1px solid rgba(0, 210, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 2.5rem;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.1);
}

.badge-icon-huge i {
    width: 36px;
    height: 36px;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.security-status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.06);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section {
    background-color: #ffffff;
    color: #0f172a;
    padding: 100px 0;
    position: relative;
}

.faq-section .section-title {
    color: #0f172a;
}

.faq-section .section-tag {
    background: rgba(0, 102, 255, 0.06);
    color: var(--primary);
}

.faq-accordion {
    max-width: 800px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #0f172a;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--primary);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 30px;
}

.faq-content p {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
    padding-bottom: 24px;
}

/* Active FAQ Item state */
.faq-accordion-item.active {
    background: #ffffff;
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.04);
}

.faq-accordion-item.active .faq-trigger {
    color: var(--primary);
}

.faq-accordion-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-accordion-item.active .faq-content {
    max-height: 200px; /* Expands smoothly */
    padding-top: 10px;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .security-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    .segments-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer social links layout updates */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start !important;
}
.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}
.social-links a:hover {
    color: var(--accent) !important;
}
.social-links a i {
    width: 20px;
    height: 20px;
}


/* ==========================================================================
   DIAGRAMMING & LAYOUT FIXES
   ========================================================================== */

/* 1. Header Navigation & Spacing Fixes (Resolves Logo overlap and text wrapping) */
.main-header .container.header-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .main-header .container.header-container {
        padding: 0 20px !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }
}

.logo {
    flex-shrink: 0 !important;
}

.header-actions {
    flex-shrink: 0 !important;
}

.nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.nav-menu ul {
    gap: 20px !important; /* Reduce gaps on desktop */
}

.nav-link {
    font-size: 0.88rem !important; /* Compact readable font */
    white-space: nowrap !important; /* Prevent "Como Funciona" wrapping */
}

.header-actions a, 
.header-actions button {
    white-space: nowrap !important; /* Prevent "Fale Conosco" wrapping */
}

/* 2. Timeline Connection Z-Index Fix (Resolves line visible inside card borders) */
.steps-timeline::before {
    display: none !important; /* Removed by user request */
}

.step-card {
    background: linear-gradient(145deg, #0a112a 0%, #050815 100%) !important;
    z-index: 2 !important; /* Sit on top of the line */
    position: relative;
}

/* 3. Footer Social Links Fix (Resolves text overflowing social circles) */
.social-links {
    display: flex;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
}

.social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    height: auto !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    gap: 10px !important;
    color: var(--text-secondary) !important;
    transition: var(--transition-fast);
}
.social-links a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-links a:hover {
    background: rgba(0, 210, 255, 0.06) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transform: translateY(-2px);
}


/* ==========================================================================
   Hero Image Replacement Styles
   ========================================================================== */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 210, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
    transition: transform 0.6s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0, 210, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-agent-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 210, 255, 0.3);
    border-color: rgba(0, 210, 255, 0.5);
}

@keyframes floatImage {
    0% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-5deg) translateY(-15px); }
    100% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        transform: none !important;
        animation: none !important;
    }
}

/* ==========================================================================
   Grid de Planos e Cards (Home e Planos.html) - Layout 3 Colunas Side-by-Side
   ========================================================================== */
.pricing-plans-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin-top: 40px !important;
    width: 100% !important;
}

@media (max-width: 992px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
        overflow-x: auto !important;
        padding-bottom: 20px !important;
    }
}

.pricing-plan-card {
    background: #090e1f !important;
    border: 1px solid rgba(0, 210, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    color: #f8fafc !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.pricing-plan-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.2) !important;
    border-color: rgba(0, 210, 255, 0.4) !important;
}

.pricing-plan-card.featured-plan {
    background: #0d1733 !important;
    border: 2px solid #00d2ff !important;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.25) !important;
    position: relative !important;
}

.pricing-plan-card .plan-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
}

.pricing-plan-card .plan-tag {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e2e8f0 !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

.pricing-plan-card .plan-tag.text-cyan {
    background: rgba(0, 210, 255, 0.15) !important;
    color: #00d2ff !important;
}

.pricing-plan-card .plan-price {
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-top: 12px !important;
    letter-spacing: -0.02em !important;
}

.pricing-plan-card .plan-price .period {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: #94a3b8 !important;
}

.pricing-plan-card .plan-features {
    list-style: none !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    flex-grow: 1 !important;
}

.pricing-plan-card .plan-features li {
    margin-bottom: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #f1f5f9 !important;
    font-size: 0.95rem !important;
}

/* Forçar cor branca de altíssimo contraste em todo o texto dentro dos cards */
.pricing-plan-card h1,
.pricing-plan-card h2,
.pricing-plan-card h3,
.pricing-plan-card h4,
.pricing-plan-card p,
.pricing-plan-card span,
.pricing-plan-card li,
.pricing-plan-card div {
    color: #ffffff !important;
}

.pricing-plan-card .plan-price {
    color: #ffffff !important;
    font-size: 2.4rem !important;
    font-weight: 700 !important;
}

.pricing-plan-card .plan-price .period {
    color: #cbd5e1 !important;
}

.pricing-plan-card p {
    color: #cbd5e1 !important;
}

.pricing-plan-card .plan-features li {
    color: #f8fafc !important;
}

.pricing-plan-card .plan-features li.disabled {
    color: #64748b !important;
}

.pricing-plan-card .plan-tag {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.pricing-plan-card .plan-tag.text-cyan {
    background: rgba(0, 210, 255, 0.25) !important;
    color: #00d2ff !important;
}

/* ==========================================================================
   Tabela Comparativa de Planos (Planos.html) - Design de Alto Contraste
   ========================================================================== */
.plans-page-hero {
    padding: 140px 0 60px 0;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(0, 210, 255, 0.12) 0%, transparent 60%);
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 210, 255, 0.25);
    background: #080d1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
    text-align: left;
    color: #f8fafc;
}

.comparison-table th, 
.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

/* Header da Tabela */
.comparison-table th {
    background: #050814;
    font-weight: 600;
    color: #ffffff;
    vertical-align: bottom;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 1.1rem;
}

.comparison-table th.col-feature {
    width: 34%;
    color: #ffffff;
    font-weight: 700;
}

.comparison-table th.col-plan {
    width: 22%;
    text-align: center;
    color: #cbd5e1;
}

.comparison-table th.col-highlight {
    background: #0d1733;
    border-top: 3px solid #00d2ff;
    color: #ffffff;
}

.comparison-table td {
    color: #f1f5f9;
}

.comparison-table td.cell-center {
    text-align: center;
}

.comparison-table td.cell-highlight {
    background: rgba(0, 210, 255, 0.04);
}

/* Linhas de Categoria */
.comparison-table tr.category-row td {
    background: #0c142b;
    font-weight: 700;
    color: #00d2ff;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 14px;
    border-top: 1px solid rgba(0, 210, 255, 0.15);
}

.comparison-table tr:hover td {
    background: rgba(0, 210, 255, 0.05);
}

/* Ícones de Check e Cross */
.icon-check {
    color: #10b981;
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.4));
}

.icon-cross {
    color: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
}

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

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

/* Banner de Destaque de Boletos */
.boleto-disclaimer-banner {
    margin-top: 35px;
    background: #081026 !important;
    border: 1.5px solid rgba(0, 210, 255, 0.4) !important;
    border-radius: 14px !important;
    padding: 18px 26px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 210, 255, 0.1) !important;
}

.boleto-disclaimer-banner i {
    color: #00d2ff !important;
    flex-shrink: 0 !important;
    width: 24px !important;
    height: 24px !important;
}

.boleto-disclaimer-banner .disclaimer-text {
    font-size: 0.95rem !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.boleto-disclaimer-banner .disclaimer-title {
    color: #00d2ff !important;
    font-weight: 700 !important;
}


