/* ===================================
   CSHIELD - DESIGN SYSTEM
   Cores baseadas no app mobile
   =================================== */

:root {
    /* Cores Primárias */
    --primary: #9153DF;
    --primary-dark: #7B3FC9;
    --primary-light: #A66DE8;
    --primary-gradient: linear-gradient(135deg, #9153DF 0%, #7B3FC9 100%);
    
    /* Cores Secundárias */
    --secondary: #1E1E2E;
    --secondary-light: #2D2D44;
    
    /* Cores de Fundo */
    --background: #F8F9FC;
    --background-dark: #0D0D1A;
    --surface: #FFFFFF;
    --surface-dark: #1A1A2E;
    
    /* Cores de Texto */
    --text-primary: #1E1E2E;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;
    
    /* Cores de Estado */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-purple: 0 10px 40px rgba(145, 83, 223, 0.3);
    
    /* Bordas */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
    
    /* Transições */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   RESET E BASE
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* ===================================
   TIPOGRAFIA
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   LAYOUT
   =================================== */

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

.container-lg {
    max-width: 1400px;
}

.section {
    padding: 5rem 0;
}

.section-dark {
    background-color: var(--background-dark);
    color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-white);
}

/* ===================================
   NAVBAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 45px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

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

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

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

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

/* ===================================
   BOTÕES
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(145, 83, 223, 0.4);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-white);
}

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

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D1A 0%, #1A1A2E 50%, #2D1B4E 100%);
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(145, 83, 223, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(145, 83, 223, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--text-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(145, 83, 223, 0.2);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(145, 83, 223, 0.3);
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-light);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}

.hero-buttons .btn {
    white-space: nowrap;
}

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

.hero-phone {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2D2D44 0%, #1E1E2E 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.hero-phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-phone-exemplo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 32px;
    display: block;
}

.hero-phone-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-floating-card {
    position: absolute;
    background: var(--surface);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -20%;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -15%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-floating-card .icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.hero-floating-card .text {
    font-weight: 600;
    color: var(--text-primary);
}

.hero-floating-card .subtext {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

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

/* ===================================
   FEATURES SECTION
   =================================== */

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

/* Grid de 4 colunas para features (evita itens isolados) */
.features-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.feature-title {
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-section {
    background: var(--primary-gradient);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--text-white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   APP DOWNLOAD SECTION
   =================================== */

.app-section {
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(145, 83, 223, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-content {
    color: var(--text-white);
}

.app-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.app-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--surface);
    color: var(--text-primary);
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.store-button.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.store-button.disabled::after {
    content: 'Em breve';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    font-size: 0.625rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.store-button .icon {
    font-size: 2rem;
}

.store-button .text {
    text-align: left;
}

.store-button .text small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.store-button .text strong {
    display: block;
    font-size: 1rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    background: var(--background);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item .icon {
    width: 48px;
    height: 48px;
    background: rgba(145, 83, 223, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-item .text {
    font-weight: 500;
}

.contact-item .text small {
    display: block;
    color: var(--text-secondary);
    font-weight: 400;
}

.contact-form {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--surface);
}

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

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===================================
   PRIVACY / POLICY SECTION
   =================================== */

.policy-section {
    padding: 6rem 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.policy-header h1 {
    margin-bottom: 1rem;
}

.policy-header .update-date {
    color: var(--text-secondary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--text-primary);
}

.policy-highlight {
    background: rgba(145, 83, 223, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.policy-table th,
.policy-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.policy-table th {
    background: rgba(145, 83, 223, 0.05);
    font-weight: 600;
    color: var(--text-primary);
}

.policy-table td {
    color: var(--text-secondary);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--background-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* Footer Contact - Fix icon alignment */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}

.footer-contact li span {
    flex: 1;
}

/* Footer Company Info */
.footer-company {
    text-align: center;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-company-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-company-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   APP PAGE STYLES
   =================================== */

.app-hero {
    padding-top: 90px !important;
}

.app-notice {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ===================================
   SECURITY SECTION
   =================================== */

.security-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.security-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all var(--transition-normal);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--success);
}

.security-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
}

.security-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.security-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.security-highlight {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.security-highlight-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.security-highlight-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.security-highlight-content p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.7;
}

/* Security Responsive */
@media (max-width: 1024px) {
    .security-grid {
        gap: 1.5rem;
    }
    
    .security-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .security-card {
        padding: 1.5rem;
    }
    
    .security-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .security-card h3 {
        font-size: 1.1rem;
    }
    
    .security-card p {
        font-size: 0.9rem;
    }
    
    .security-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .security-highlight-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
    
    .security-highlight-content h4 {
        font-size: 1.15rem;
    }
    
    .security-highlight-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .security-card {
        padding: 1.25rem;
    }
    
    .security-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .security-card h3 {
        font-size: 1rem;
    }
    
    .security-card p {
        font-size: 0.85rem;
    }
    
    .security-highlight {
        padding: 1.25rem;
    }
    
    .security-highlight-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .security-highlight-content h4 {
        font-size: 1.05rem;
    }
    
    .security-highlight-content p {
        font-size: 0.85rem;
    }
}

/* Requisitos Grid */
.requisitos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.requisito-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.requisito-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-white);
    margin: 0 auto 1.25rem;
}

.requisito-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.requisito-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.requisito-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.requisito-list li i {
    color: var(--success);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.requisito-badge {
    margin-top: 1rem;
}

.badge-em-breve {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--success);
}

.badge-disponivel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #10b981;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* QR Code Section */
.app-qrcode-section {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.qrcode-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.qrcode-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.qrcode-image {
    flex-shrink: 0;
}

.qrcode-image img {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    background: white;
    padding: 0.5rem;
}

.qrcode-text {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qrcode-text i {
    font-size: 2rem;
    color: var(--primary-light);
}

.qrcode-text p {
    margin: 0;
    line-height: 1.5;
}

.qrcode-text strong {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.qrcode-text small {
    color: rgba(255, 255, 255, 0.7);
}

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form .form-control {
    flex: 1;
    min-width: 250px;
}

.newsletter-privacy {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
}

.ai-feature {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary), var(--primary-light)) border-box;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 1rem;
    }
    
    .navbar-logo {
        height: 38px;
    }
    
    .navbar-nav {
        gap: 1.25rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-container,
    .app-container,
    .contact-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons,
    .app-buttons {
        justify-content: center;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        background: #FFFFFF;
    }
    
    .navbar-container {
        height: 70px;
        padding: 0 1rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .navbar-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.75rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav li {
        width: 100%;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(145, 83, 223, 0.1);
    }
    
    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .navbar-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-phone {
        width: 220px;
        height: 450px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    /* Mobile: features em coluna única */
    .features-grid-mobile-1 {
        grid-template-columns: 1fr !important;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-top: 1.5rem;
    }
    
    .footer-legal {
        gap: 1.25rem;
    }
    
    .contact-container {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .policy-section {
        padding: 4rem 0;
    }
    
    .policy-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .policy-content h2 {
        font-size: 1.35rem;
        margin-top: 2rem;
    }
    
    .policy-content h3 {
        font-size: 1.15rem;
    }
    
    .app-container {
        gap: 2rem !important;
    }
    
    /* App Page - Requisitos Mobile 768px */
    .app-hero {
        padding-top: 6rem !important;
    }
    
    .requisitos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .requisito-card {
        padding: 1.75rem;
    }
    
    .requisito-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .requisito-title {
        font-size: 1.15rem;
    }
    
    .requisito-list li {
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        min-width: 100%;
    }
    
    /* Footer Contact Mobile */
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-company {
        padding: 1.25rem 0;
    }
    
    .footer-company-name {
        font-size: 0.85rem;
    }
    
    .footer-company-info {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 0.75rem;
    }
    
    .navbar-logo {
        height: 32px;
    }
    
    .container {
        padding: 0 0.875rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-phone {
        width: 180px;
        height: 370px;
    }
    
    .hero-title {
        font-size: 1.65rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons,
    .app-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        border-radius: 12px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .store-button {
        justify-content: center;
        padding: 0.75rem 1rem;
    }
    
    .store-button .icon {
        font-size: 1.5rem;
    }
    
    .store-button .text strong {
        font-size: 0.9rem;
    }
    
    .store-button .text small {
        font-size: 0.65rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-container {
        gap: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .footer-copyright,
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .contact-details {
        gap: 1rem;
    }
    
    .contact-item .icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-control {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .policy-section {
        padding: 3rem 0;
    }
    
    .policy-header h1 {
        font-size: 1.75rem;
    }
    
    .policy-content h2 {
        font-size: 1.25rem;
    }
    
    .policy-content h3 {
        font-size: 1.05rem;
    }
    
    .policy-content p,
    .policy-content li {
        font-size: 0.9rem;
    }
    
    .policy-highlight {
        padding: 1rem;
    }
    
    .policy-table th,
    .policy-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* App Page - Requisitos Small Mobile 480px */
    .app-hero {
        padding-top: 5rem !important;
    }
    
    .requisitos-grid {
        gap: 1.25rem;
        max-width: 100%;
    }
    
    .requisito-card {
        padding: 1.5rem;
    }
    
    .requisito-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .requisito-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .requisito-list {
        margin-bottom: 1rem;
    }
    
    /* QR Code Mobile */
    .qrcode-content {
        flex-direction: column;
        text-align: center;
    }
    
    .qrcode-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .qrcode-text i {
        font-size: 1.5rem;
    }
    
    .badge-disponivel {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .requisito-list li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }
    
    .requisito-list li i {
        font-size: 0.75rem;
    }
    
    .badge-em-breve {
        font-size: 0.8rem;
        padding: 0.375rem 0.75rem;
    }
    
    .app-notice {
        font-size: 0.8rem;
    }
    
    .newsletter-privacy {
        font-size: 0.8rem;
    }
}

/* ===================================
   RECURSOS PAGE
   =================================== */

.recursos-hero {
    padding-top: 8rem !important;
    padding-bottom: 3rem !important;
}

.recursos-title {
    color: #FFFFFF !important;
    margin-bottom: 1rem;
}

.recursos-subtitle {
    color: #FFFFFF !important;
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Hero Recursos - texto claro para boa leitura */
.recursos-hero .section-header h1,
.recursos-hero .section-header p,
.recursos-hero .hero-badge {
    color: #FFFFFF !important;
}

.recursos-hero .text-gradient {
    background: linear-gradient(135deg, #A66DE8 0%, #C9A0F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recursos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.recursos-grid-reverse .recursos-visual {
    order: 0;
}

.recursos-grid-reverse .recursos-content {
    order: 1;
}

.recursos-content {
    text-align: left;
}

.recursos-badge {
    background: rgba(145, 83, 223, 0.1) !important;
    border-color: var(--primary) !important;
}

.recursos-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.recursos-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.recursos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recursos-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.recursos-list li i {
    color: var(--success);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.recursos-card {
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.recursos-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.recursos-card h3 {
    margin-bottom: 0.5rem;
}

.recursos-card p {
    opacity: 0.9;
    margin: 0;
}

.recursos-card-primary {
    background: var(--primary-gradient);
    color: white;
}

.recursos-card-primary h3 {
    color: white;
}

.recursos-card-dark {
    background: var(--surface-dark);
}

.recursos-card-dark i {
    color: var(--primary-light);
}

.recursos-card-dark h3 {
    color: white;
}

.recursos-card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* Utility classes */
.text-white {
    color: #FFFFFF !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-light li {
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    margin-top: 2rem;
}

/* Recursos Responsive - Tablet */
@media (max-width: 1024px) {
    .recursos-hero {
        padding-top: 7rem !important;
    }
    
    .recursos-grid {
        gap: 3rem;
    }
    
    .recursos-section-title {
        font-size: 1.75rem;
    }
    
    .recursos-card {
        padding: 2.5rem;
    }
    
    .recursos-card i {
        font-size: 3.5rem;
    }
}

/* Recursos Responsive - Mobile */
@media (max-width: 768px) {
    .recursos-hero {
        padding-top: 6rem !important;
        padding-bottom: 2rem !important;
    }
    
    .recursos-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .recursos-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .recursos-grid-reverse .recursos-visual {
        order: 0;
    }
    
    .recursos-grid-reverse .recursos-content {
        order: 1;
    }
    
    .recursos-content {
        text-align: center;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .recursos-content .hero-badge {
        margin-bottom: 1rem;
    }
    
    .recursos-visual {
        order: 0;
        display: flex;
        justify-content: center;
    }
    
    .recursos-section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .recursos-description {
        font-size: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .recursos-list {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .recursos-list li {
        font-size: 0.95rem;
        justify-content: center;
        text-align: left;
        max-width: 320px;
        width: 100%;
    }
    
    .recursos-list li i {
        font-size: 1.1rem;
    }
    
    .recursos-card {
        padding: 2rem;
        max-width: 300px;
        margin: 0 auto;
        width: 100%;
    }
    
    .recursos-card i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .recursos-card h3 {
        font-size: 1.25rem;
    }
    
    .recursos-card p {
        font-size: 0.9rem;
    }
}

/* Recursos Responsive - Small Mobile */
@media (max-width: 480px) {
    .recursos-hero {
        padding-top: 5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .recursos-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .recursos-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .recursos-grid {
        gap: 2rem;
    }
    
    .recursos-section-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .recursos-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .recursos-list {
        padding: 0 0.5rem;
    }
    
    .recursos-list li {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
    }
    
    .recursos-list li i {
        font-size: 0.9rem;
    }
    
    .recursos-card {
        padding: 1.5rem;
        max-width: 260px;
    }
    
    .recursos-card i {
        font-size: 2.25rem;
    }
    
    .recursos-card h3 {
        font-size: 1.05rem;
    }
    
    .recursos-card p {
        font-size: 0.8rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   NAVBAR DROPDOWN MENU
   =================================== */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.nav-dropdown-icon {
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1001;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.nav-dropdown-item:hover {
    background: rgba(145, 83, 223, 0.08);
    color: var(--primary);
}

.nav-dropdown-item i {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-dropdown-item div {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-item strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.nav-dropdown-item small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        background: transparent;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 200px;
        padding: 0.5rem 0;
    }
    
    .nav-dropdown-item {
        padding: 0.75rem 1rem;
        background: rgba(145, 83, 223, 0.05);
        margin: 0.25rem 0;
    }
    
    .nav-dropdown-icon {
        font-size: 0.5rem;
    }
}

/* ===================================
   ANTI-FRAUDE PAGE STYLES
   =================================== */

/* Hero Anti-Fraude */
.antifraud-hero {
    min-height: 100vh;
    padding-top: 90px;
}

.antifraud-hero .hero-container {
    align-items: flex-start;
}

.antifraud-hero .hero-container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: flex-start;
    padding-top: 2rem;
}

.antifraud-hero .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.antifraud-hero .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.antifraud-hero .hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.antifraud-hero .hero-buttons .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

.antifraud-hero .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
}

.antifraud-shield {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-purple);
}

.shield-ring {
    position: absolute;
    border: 2px solid rgba(145, 83, 223, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

.ring-1 {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.ring-2 {
    width: 240px;
    height: 240px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Hero Visual Anti-Fraude */
.antifraud-hero .hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
}

/* ========================================
   TERMINAL IA CSHIELD - VALIDAÇÃO EM TEMPO REAL
   ======================================== */
.cshield-terminal {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(145deg, #0a0a14 0%, #12121f 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(145, 83, 223, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(145, 83, 223, 0.3);
    position: relative;
}

/* Header do Terminal */
.terminal-header {
    background: linear-gradient(90deg, #1a1a2e 0%, #252542 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(145, 83, 223, 0.2);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dots .dot.red { background: #ff5f57; }
.terminal-dots .dot.yellow { background: #ffbd2e; }
.terminal-dots .dot.green { background: #28c840; }

.terminal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
}

.terminal-title i {
    color: var(--primary);
}

.terminal-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #28c840;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terminal-status .status-dot {
    width: 8px;
    height: 8px;
    background: #28c840;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(40, 200, 64, 0); }
}

/* Body do Terminal */
.terminal-body {
    padding: 24px;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    min-height: 450px;
    position: relative;
}

/* Stats no topo */
.terminal-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.terminal-stats .stat {
    text-align: center;
}

.terminal-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(145, 83, 223, 0.5);
}

.terminal-stats .stat-value.success { color: #28c840; text-shadow: 0 0 20px rgba(40, 200, 64, 0.5); }
.terminal-stats .stat-value.warning { color: #ffbd2e; text-shadow: 0 0 20px rgba(255, 189, 46, 0.5); }
.terminal-stats .stat-value.danger { color: #ff5f57; text-shadow: 0 0 20px rgba(255, 95, 87, 0.5); }

.terminal-stats .stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.terminal-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(145, 83, 223, 0.4), transparent);
    margin-bottom: 12px;
}

/* Output de validações */
.terminal-output {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    animation: fadeInLine 0.3s ease-out;
    font-size: 0.8rem;
    white-space: nowrap;
}

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

.terminal-line .time {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    min-width: 45px;
}

.terminal-line .name {
    color: #a78bfa;
    min-width: 90px;
    font-weight: 500;
}

.terminal-line .email {
    color: rgba(255, 255, 255, 0.5);
    min-width: 140px;
}

.terminal-line .value {
    color: #38bdf8;
    min-width: 90px;
    text-align: right;
}

.terminal-line .status {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    min-width: 70px;
    text-align: center;
}

.terminal-line .status.aprovado {
    background: rgba(40, 200, 64, 0.2);
    color: #28c840;
    border: 1px solid rgba(40, 200, 64, 0.3);
}

.terminal-line .status.analise {
    background: rgba(255, 189, 46, 0.2);
    color: #ffbd2e;
    border: 1px solid rgba(255, 189, 46, 0.3);
}

.terminal-line .status.recusado {
    background: rgba(255, 95, 87, 0.2);
    color: #ff5f57;
    border: 1px solid rgba(255, 95, 87, 0.3);
}

.terminal-line .score {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
}

.terminal-line .score span {
    font-weight: 600;
}

.terminal-line .score.low span { color: #28c840; }
.terminal-line .score.medium span { color: #ffbd2e; }
.terminal-line .score.high span { color: #ff5f57; }

/* Input/Prompt */
.terminal-input {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 12px;
}

.terminal-input .prompt {
    color: var(--primary);
    font-weight: 600;
}

.terminal-input .prompt-symbol {
    color: #28c840;
}

.terminal-input .input-text {
    color: rgba(255, 255, 255, 0.6);
}

.terminal-input .cursor {
    width: 8px;
    height: 16px;
    background: var(--primary);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Efeito de scan */
.terminal-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(145, 83, 223, 0.03) 50%,
        transparent 100%
    );
    animation: scan 4s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Grid pattern de fundo */
.cshield-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(145, 83, 223, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 83, 223, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.terminal-body {
    position: relative;
    z-index: 1;
}

/* Stats Anti-Fraude */
.antifraud-stats {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.antifraud-stats .stat-label {
    font-size: 0.875rem;
    max-width: 180px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    background: var(--background);
}

.problem-card {
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.problem-card:hover {
    border-color: var(--error);
}

.problem-icon {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
}

/* Flow Timeline */
.flow-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.flow-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding-bottom: 2.5rem;
}

.flow-step:last-child {
    padding-bottom: 0;
}

.flow-step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-purple);
}

.flow-step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-step-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.flow-step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: white;
}

.flow-step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* Colaborativo Section */
.colaborativo-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
}

.colaborativo-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.colaborativo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-purple);
    z-index: 2;
}

.colaborativo-center i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.colaborativo-users {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    animation: rotate-slow 30s linear infinite;
}

.collab-user {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    animation: rotate-reverse 30s linear infinite;
}

.user-1 { top: 0; left: 50%; transform: translateX(-50%); }
.user-2 { top: 25%; right: 0; }
.user-3 { bottom: 25%; right: 0; }
.user-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.user-5 { bottom: 25%; left: 0; }
.user-6 { top: 25%; left: 0; }

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.platform-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.platform-card img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.platform-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.platform-fallback i {
    font-size: 2rem;
    color: var(--primary-light);
}

.platform-fallback span {
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-api {
    background: var(--primary-gradient);
    border: none;
}

.platform-api i {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.platform-api span {
    font-weight: 600;
    color: white;
}

.platform-api small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Beneficios Grid */
.beneficios-section {
    background: var(--background);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.beneficio-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.beneficio-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.25rem;
}

.beneficio-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.beneficio-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Anti-Fraude Section */
.contact-antifraud-section .contact-container {
    align-items: flex-start;
}

.contact-antifraud-section .contact-info {
    color: white;
}

.contact-antifraud-section .contact-info h2 {
    color: white;
    margin-bottom: 1rem;
}

/* Formulário com fundo branco - garantir contraste */
.contact-antifraud-section .contact-form {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-antifraud-section .contact-form h3 {
    color: #1E1E2E !important;
}

.contact-antifraud-section .form-label {
    color: #1E1E2E;
}

.contact-antifraud-section .form-control {
    background: #FFFFFF;
    color: #1E1E2E;
    border-color: #E5E7EB;
}

.contact-antifraud-section .form-control::placeholder {
    color: #9CA3AF;
}

.contact-antifraud-section .form-control:focus {
    border-color: var(--primary);
    background: #FFFFFF;
}

.contact-antifraud-section select.form-control {
    color: #1E1E2E;
}

.contact-antifraud-section select.form-control option {
    color: #1E1E2E;
    background: #FFFFFF;
}

.contact-antifraud-section .form-privacy {
    color: #6B7280;
}

.contact-antifraud-section .form-privacy a {
    color: var(--primary);
}

.contact-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-highlight-item i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Form styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.form-privacy i {
    margin-right: 0.25rem;
}

.form-privacy a {
    color: var(--primary);
}

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

/* Anti-Fraude Responsive */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .flow-timeline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .antifraud-hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    /* Mobile: Título e texto primeiro, terminal depois */
    .antifraud-hero .hero-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .antifraud-hero .hero-content {
        order: 1;
        text-align: center;
    }
    
    .antifraud-hero .hero-visual {
        order: 2;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .antifraud-hero .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .antifraud-hero .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .antifraud-hero .hero-description {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    /* Terminal responsivo */
    .cshield-terminal {
        max-width: 100%;
    }
    
    .terminal-header {
        padding: 10px 12px;
    }
    
    .terminal-title {
        font-size: 0.7rem;
    }
    
    .terminal-title span {
        display: none;
    }
    
    .terminal-status {
        font-size: 0.6rem;
    }
    
    .terminal-body {
        padding: 12px;
        min-height: 280px;
        font-size: 0.7rem;
    }
    
    .terminal-stats {
        gap: 0.5rem;
    }
    
    .terminal-stats .stat-value {
        font-size: 1.1rem;
    }
    
    .terminal-stats .stat-label {
        font-size: 0.55rem;
    }
    
    .terminal-output {
        height: 160px;
    }
    
    .terminal-line {
        font-size: 0.6rem;
        gap: 4px;
        padding: 4px 0;
    }
    
    .terminal-line .time {
        display: none;
    }
    
    .terminal-line .name {
        min-width: 60px;
    }
    
    .terminal-line .email {
        min-width: 80px;
        font-size: 0.55rem;
    }
    
    .terminal-line .value {
        min-width: 55px;
        font-size: 0.6rem;
    }
    
    .terminal-line .status {
        padding: 2px 4px;
        font-size: 0.5rem;
        min-width: 50px;
    }
    
    .terminal-line .score {
        display: none;
    }
    
    .terminal-input {
        font-size: 0.65rem;
    }
    
    .flow-timeline::before {
        left: 20px;
    }
    
    .flow-step {
        gap: 1.25rem;
        padding-bottom: 2rem;
    }
    
    .flow-step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .flow-step-content {
        padding: 1.25rem;
    }
    
    .flow-step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .flow-step-content h3 {
        font-size: 1rem;
    }
    
    .flow-step-content p {
        font-size: 0.85rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .platform-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .colaborativo-visual {
        width: 240px;
        height: 240px;
    }
    
    .colaborativo-center {
        width: 80px;
        height: 80px;
        font-size: 0.75rem;
    }
    
    .colaborativo-center i {
        font-size: 1.5rem;
    }
    
    .colaborativo-users {
        width: 210px;
        height: 210px;
    }
    
    .collab-user {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .contact-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-antifraud-section .contact-container {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .antifraud-hero {
        padding-top: 80px;
    }
    
    .antifraud-shield {
        width: 180px;
        height: 180px;
    }
    
    .shield-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .ring-1 { width: 100px; height: 100px; }
    .ring-2 { width: 140px; height: 140px; }
    .ring-3 { width: 180px; height: 180px; }
    
    .flow-step {
        gap: 1rem;
        padding-bottom: 1.5rem;
    }
    
    .flow-step-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .flow-timeline::before {
        left: 17px;
    }
    
    .flow-step-content {
        padding: 1rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .platform-card {
        padding: 1rem;
        min-height: 90px;
    }
    
    .platform-fallback i {
        font-size: 1.5rem;
    }
    
    .platform-fallback span {
        font-size: 0.8rem;
    }
    
    .colaborativo-visual {
        width: 200px;
        height: 200px;
    }
    
    .colaborativo-center {
        width: 70px;
        height: 70px;
    }
    
    .colaborativo-users {
        width: 180px;
        height: 180px;
    }
    
    .collab-user {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .beneficio-card {
        padding: 1.5rem;
    }
    
    .beneficio-icon {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }
    
    .beneficio-card h3 {
        font-size: 1rem;
    }
    
    .beneficio-card p {
        font-size: 0.85rem;
    }
}

/* ===================================
   DUAL CTA SECTION (Consumidor vs E-commerce)
   =================================== */

.dual-cta-section {
    background: var(--background);
    padding: 5rem 0;
}

.dual-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dual-card {
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

/* Card Consumidor - Tema Roxo/Neon */
.consumer-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
    border: 2px solid rgba(123, 63, 201, 0.4);
    box-shadow: 0 10px 40px rgba(123, 63, 201, 0.2);
}

.consumer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7B3FC9, #A855F7, #E879F9);
}

.consumer-card:hover {
    transform: translateY(-8px);
    border-color: #A855F7;
    box-shadow: 0 20px 60px rgba(123, 63, 201, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
}

.consumer-card h3 {
    color: #FFFFFF !important;
}

.consumer-card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.consumer-card .dual-card-list li {
    color: rgba(255, 255, 255, 0.9) !important;
}

.consumer-card .dual-card-list li i {
    color: #A855F7 !important;
}

/* Card E-commerce - Tema Roxo Corporativo */
.ecommerce-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border: 2px solid rgba(145, 83, 223, 0.2);
    box-shadow: 0 10px 40px rgba(145, 83, 223, 0.15);
}

.ecommerce-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9153DF, #7B3FC9, #5B2FA9);
}

.ecommerce-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(145, 83, 223, 0.25), 0 0 40px rgba(145, 83, 223, 0.1);
}

.ecommerce-card h3 {
    color: var(--text-primary);
}

.ecommerce-card p {
    color: var(--text-secondary);
}

.ecommerce-card .dual-card-list li i {
    color: var(--primary);
}

.dual-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

/* Ícone Consumidor - Neon */
.consumer-card .dual-card-icon {
    background: linear-gradient(135deg, #7B3FC9 0%, #A855F7 100%);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

/* Ícone E-commerce - Roxo Corporativo */
.dual-card-icon.ecommerce-icon {
    background: linear-gradient(135deg, #9153DF 0%, #7B3FC9 100%);
    box-shadow: 0 0 30px rgba(145, 83, 223, 0.3);
}

.dual-card-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Badge Consumidor */
.consumer-card .dual-card-badge {
    background: rgba(168, 85, 247, 0.2);
    color: #E879F9;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Badge E-commerce */
.dual-card-badge.ecommerce-badge {
    background: rgba(145, 83, 223, 0.1);
    color: var(--primary);
    border: 1px solid rgba(145, 83, 223, 0.2);
}

.dual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.dual-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dual-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.dual-card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dual-card-list li i {
    color: var(--success);
    font-size: 0.875rem;
}

/* Consumer Section */
.consumer-section .consumer-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   ANTI-FRAUD SUMMARY SECTION
   =================================== */

.antifraud-summary-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
}

.antifraud-mini-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
}

.mini-stat {
    text-align: center;
    color: white;
}

.mini-stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mini-stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    max-width: 150px;
    margin: 0 auto;
}

/* Flow Mini */
.antifraud-flow-mini {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    text-align: center;
}

.antifraud-flow-mini h3 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.flow-mini-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.flow-mini-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.flow-mini-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.flow-mini-step span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 80px;
    text-align: center;
}

.flow-mini-arrow {
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.5;
}

.flow-mini-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Mini */
.antifraud-benefits-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-mini {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--surface);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.benefit-mini:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-mini-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-mini-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.benefit-mini-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Anti-Fraud CTA */
.antifraud-cta {
    text-align: center;
}

.antifraud-cta-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.antifraud-cta-note i {
    color: var(--success);
    margin-right: 0.25rem;
}

/* Final CTA Buttons */
.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE - DUAL CTA & ANTI-FRAUD SUMMARY
   =================================== */

@media (max-width: 1024px) {
    .dual-cards {
        gap: 1.5rem;
    }
    
    .dual-card {
        padding: 2rem;
    }
    
    .antifraud-mini-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .antifraud-benefits-mini {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .dual-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .dual-card {
        padding: 2rem;
    }
    
    .dual-card-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    
    .dual-card h3 {
        font-size: 1.25rem;
    }
    
    .antifraud-mini-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .mini-stat-number {
        font-size: 1.5rem;
    }
    
    .mini-stat-label {
        font-size: 0.7rem;
    }
    
    .antifraud-flow-mini {
        padding: 1.5rem;
    }
    
    .flow-mini-steps {
        gap: 0.25rem;
    }
    
    .flow-mini-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .flow-mini-step span {
        font-size: 0.65rem;
        max-width: 60px;
    }
    
    .flow-mini-arrow {
        font-size: 0.75rem;
    }
    
    .antifraud-benefits-mini {
        grid-template-columns: 1fr;
    }
    
    .benefit-mini {
        padding: 1.25rem;
    }
    
    .benefit-mini-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .dual-card {
        padding: 1.5rem;
    }
    
    .dual-card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .dual-card h3 {
        font-size: 1.1rem;
    }
    
    .dual-card p {
        font-size: 0.9rem;
    }
    
    .dual-card-list li {
        font-size: 0.85rem;
    }
    
    .antifraud-mini-stats {
        padding: 1rem;
    }
    
    .mini-stat-number {
        font-size: 1.25rem;
    }
    
    .mini-stat-label {
        font-size: 0.65rem;
    }
    
    .flow-mini-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .flow-mini-arrow {
        display: none;
    }
    
    .flow-mini-step {
        width: 100%;
    }
    
    .flow-mini-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
        border-radius: 8px;
    }
    
    .flow-mini-step span {
        font-size: 0.6rem;
        max-width: 100%;
    }
    
    .antifraud-flow-mini h3 {
        font-size: 1rem;
    }
    
    .flow-mini-description {
        font-size: 0.85rem;
    }
    
    .benefit-mini-content h4 {
        font-size: 0.9rem;
    }
    
    .benefit-mini-content p {
        font-size: 0.8rem;
    }
}

/* ===================================
   NETWORK SECTION (Home Page)
   =================================== */

.network-section {
    overflow: hidden;
}

.network-visual {
    max-width: 800px;
    margin: 0 auto;
}

.network-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    position: relative;
}

.network-diagram::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(145, 83, 223, 0.3), var(--primary));
    transform: translateY(-50%);
}

.network-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.network-node i {
    width: 80px;
    height: 80px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
}

.network-node span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.consumer-node i {
    color: var(--primary);
    border-color: var(--primary);
}

.ecommerce-node i {
    color: var(--success);
    border-color: var(--success);
}

.network-center {
    position: relative;
    z-index: 2;
}

.network-logo {
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-purple);
}

.network-logo i {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.network-logo span {
    font-size: 0.8rem;
    font-weight: 700;
}

.network-benefits {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding: 0 1rem;
}

.network-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    max-width: 45%;
}

.network-benefit i {
    color: var(--primary-light);
    font-size: 1rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dual Audience Section */
.dual-audience-section {
    background: var(--background);
}

/* Network Responsive */
@media (max-width: 768px) {
    .network-diagram {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .network-diagram::before {
        top: 15%;
        bottom: 15%;
        left: 50%;
        right: auto;
        width: 2px;
        height: 70%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, var(--primary), rgba(145, 83, 223, 0.3), var(--primary));
    }
    
    .network-node i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .network-logo {
        width: 90px;
        height: 90px;
    }
    
    .network-logo i {
        font-size: 2rem;
    }
    
    .network-logo span {
        font-size: 0.7rem;
    }
    
    .network-benefits {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .network-benefit {
        max-width: 100%;
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .section-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .network-node i {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .network-node span {
        font-size: 0.8rem;
    }
    
    .network-logo {
        width: 70px;
        height: 70px;
    }
    
    .network-logo i {
        font-size: 1.5rem;
    }
    
    .network-logo span {
        font-size: 0.6rem;
    }
    
    .network-benefit {
        font-size: 0.8rem;
    }
}

/* ===================================
   FORM MESSAGES
   =================================== */

.form-message {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.form-message-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid var(--success);
}

.form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid var(--error);
}

.form-message-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
}

.form-message-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

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

.form-message-error .form-message-icon {
    background: rgba(239, 68, 68, 0.2);
    color: var(--error);
}

.form-message-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-message-success .form-message-text h4 {
    color: var(--success);
}

.form-message-error .form-message-text h4 {
    color: var(--error);
}

.form-message-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form loading state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form input error state */
.form-control.error {
    border-color: var(--error);
    background-color: rgba(239, 68, 68, 0.05);
}

.form-control.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form privacy note */
.form-privacy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.form-privacy i {
    margin-right: 0.5rem;
    color: var(--success);
}

.form-privacy a {
    color: var(--primary);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

/* Responsive form message */
@media (max-width: 480px) {
    .form-message-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .form-message-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }
}

/* ===================================
   HERO MINI FEATURES
   =================================== */

.hero-mini-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(145, 83, 223, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(145, 83, 223, 0.2);
}

.mini-feature i {
    color: var(--primary);
    font-size: 0.9rem;
}

.mini-feature span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ===================================
   DUAL SOLUTION GRID
   =================================== */

.dual-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.antifraude-solution:hover {
    border-color: var(--primary);
}

.financeiro-solution:hover {
    border-color: var(--success);
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.antifraude-solution .solution-icon {
    background: var(--primary-gradient);
    color: white;
    font-size: 1.75rem;
}

.financeiro-solution .solution-icon {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    font-size: 1.75rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.solution-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.solution-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

/* ===================================
   FINANCIAL DASHBOARD PREVIEW
   =================================== */

.financial-dashboard-preview {
    max-width: 400px;
    margin: 0 auto 3rem;
}

.dashboard-card {
    background: linear-gradient(135deg, var(--primary) 0%, #7b3fc9 100%);
    border-radius: 20px;
    padding: 1.5rem;
    color: white;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dashboard-card-title {
    font-size: 0.9rem;
    opacity: 0.9;
}

.dashboard-card-period {
    font-size: 0.8rem;
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.dashboard-balance {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.dashboard-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.summary-item {
    background: rgba(255,255,255,0.15);
    padding: 1rem;
    border-radius: 12px;
}

.summary-item.income {
    border-left: 3px solid var(--success);
}

.summary-item.expense {
    border-left: 3px solid #ef4444;
}

.summary-item .label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.summary-item .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===================================
   FINANCIAL FEATURES GRID
   =================================== */

.financial-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.financial-feature {
    background: var(--surface-dark);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.financial-feature:hover {
    transform: translateY(-3px);
    background: rgba(145, 83, 223, 0.1);
}

.financial-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--success);
}

.financial-feature h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.financial-feature p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   FINANCIAL CATEGORIES
   =================================== */

.financial-categories {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.financial-categories h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
}

.category-icon {
    font-size: 1.1rem;
}

.categories-note {
    color: var(--primary-light);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* ===================================
   CTA FEATURES
   =================================== */

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.cta-features span i {
    color: var(--success);
}

/* ===================================
   RESPONSIVE - CONSUMIDOR PAGE
   =================================== */

@media (max-width: 1024px) {
    .financial-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-mini-features {
        justify-content: center;
    }
    
    .dual-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .financial-features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-balance {
        font-size: 2rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .cta-features span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .mini-feature {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .financial-categories {
        padding: 1.5rem 1rem;
    }
    
    .categories-grid {
        gap: 0.5rem;
    }
    
    .category-item {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ===================================
   DOWNLOAD CARDS - App Page
   Botão + QR Code Unificados
   =================================== */

.download-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.download-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.download-card-header i {
    font-size: 1.75rem;
}

.download-card-header span {
    font-size: 1.25rem;
    font-weight: 600;
}

.download-card-qr {
    background: white;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 1rem;
}

.download-card-qr img {
    width: 130px;
    height: 130px;
    display: block;
}

.download-card-hint {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.download-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--primary-gradient);
    color: var(--text-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.download-card-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
    color: var(--text-white);
}

.download-card-button i {
    font-size: 1.25rem;
}

/* Apple button - cor diferenciada */
.download-card-button.apple {
    background: linear-gradient(135deg, #333 0%, #000 100%);
}

.download-card-button.apple:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Download Cards Responsive - Tablet */
@media (max-width: 768px) {
    .download-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    
    .download-card {
        max-width: 320px;
        width: 100%;
    }
}

/* Download Cards Responsive - Mobile */
@media (max-width: 480px) {
    .download-cards {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .download-card {
        padding: 1.25rem;
        max-width: 100%;
    }
    
    .download-card-header i {
        font-size: 1.5rem;
    }
    
    .download-card-header span {
        font-size: 1.1rem;
    }
    
    .download-card-qr img {
        width: 110px;
        height: 110px;
    }
    
    .download-card-hint {
        font-size: 0.8rem;
    }
    
    .download-card-button {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .download-card-button i {
        font-size: 1.1rem;
    }
}

/* ===================================
   CONSUMIDOR PAGE - TEMA FUTURISTA
   Cor principal do APP: #7B3FC9
   Visual moderno com contraste adequado
   =================================== */

/* Variáveis específicas para Consumidor */
.consumidor-page {
    --c-primary: #7B3FC9;
    --c-primary-light: #9B5FE9;
    --c-primary-dark: #5B2FA9;
    --c-secondary: #A855F7;
    --c-secondary-light: #C084FC;
    --c-accent: #E879F9;
    --c-success: #10B981;
    --c-dark: #0D0D1A;
    --c-dark-light: #1A1A2E;
    --c-dark-surface: #252542;
    --c-gradient: linear-gradient(135deg, #7B3FC9 0%, #A855F7 100%);
    --c-gradient-alt: linear-gradient(135deg, #5B2FA9 0%, #7B3FC9 50%, #C084FC 100%);
    --c-gradient-neon: linear-gradient(135deg, #9333EA 0%, #C084FC 50%, #E879F9 100%);
    --c-gradient-dark: linear-gradient(180deg, #0D0D1A 0%, #1A1A2E 100%);
    --c-glow: 0 0 40px rgba(123, 63, 201, 0.5);
    --c-glow-neon: 0 0 30px rgba(168, 85, 247, 0.4);
}

/* ======== HERO SECTION - FUTURISTA ======== */
.consumidor-page .hero {
    background: var(--c-gradient-dark);
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.consumidor-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(123, 63, 201, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(123, 63, 201, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Grid futurista de fundo */
.consumidor-page .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(123, 63, 201, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 63, 201, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.consumidor-page .hero-content {
    position: relative;
    z-index: 2;
}

.consumidor-page .hero-title {
    color: #FFFFFF;
}

.consumidor-page .hero-title .highlight {
    color: var(--c-secondary);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.consumidor-page .hero-title .text-gradient {
    background: var(--c-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consumidor-page .hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
}

.consumidor-page .hero-badge {
    background: rgba(123, 63, 201, 0.2);
    color: var(--c-secondary);
    border: 1px solid rgba(0, 217, 255, 0.4);
    backdrop-filter: blur(10px);
}

/* Botões futuristas */
.consumidor-page .btn-primary {
    background: var(--c-gradient);
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: var(--c-glow);
    position: relative;
    overflow: hidden;
}

.consumidor-page .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.consumidor-page .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(123, 63, 201, 0.6), 0 0 100px rgba(0, 217, 255, 0.3);
}

.consumidor-page .btn-primary:hover::before {
    left: 100%;
}

.consumidor-page .btn-outline {
    border: 2px solid var(--c-secondary);
    color: var(--c-secondary);
    background: transparent;
}

.consumidor-page .btn-outline:hover {
    background: var(--c-secondary);
    color: var(--c-dark);
    box-shadow: var(--c-glow-neon);
}

/* Mini Features */
.consumidor-page .mini-feature {
    background: rgba(123, 63, 201, 0.15);
    border: 1px solid rgba(123, 63, 201, 0.3);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
}

.consumidor-page .mini-feature i {
    color: var(--c-secondary);
}

.consumidor-page .mini-feature span {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Floating Cards */
.consumidor-page .hero-floating-card {
    background: rgba(26, 26, 46, 0.9);
    border: 1px solid rgba(123, 63, 201, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: var(--c-glow);
}

.consumidor-page .hero-floating-card.card-1 {
    top: 15%;
    left: auto;
    right: -10%;
}

.consumidor-page .hero-floating-card.card-2 {
    bottom: 25%;
    right: -15%;
}

.consumidor-page .hero-floating-card .icon {
    background: var(--c-gradient);
    color: #FFFFFF;
}

.consumidor-page .hero-floating-card .text {
    color: #FFFFFF;
}

.consumidor-page .hero-floating-card .subtext {
    color: var(--c-secondary);
}

.consumidor-page .hero-floating-card.card-2 .icon {
    background: linear-gradient(135deg, var(--c-secondary) 0%, #E879F9 100%);
}

/* ======== STATS SECTION - FUTURISTA ======== */
.consumidor-page .stats-section {
    background: linear-gradient(180deg, var(--c-dark) 0%, var(--c-dark-light) 50%, var(--c-dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.consumidor-page .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 50%, rgba(123, 63, 201, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.consumidor-page .stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-primary), var(--c-secondary), var(--c-primary), transparent);
}

.consumidor-page .stats-grid {
    position: relative;
    z-index: 2;
    gap: 1.5rem;
}

.consumidor-page .stat-item {
    background: linear-gradient(145deg, rgba(37, 37, 66, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Borda gradiente */
.consumidor-page .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(123, 63, 201, 0.5), rgba(168, 85, 247, 0.2), rgba(232, 121, 249, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Efeito glow no topo */
.consumidor-page .stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 10%;
    right: 10%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.consumidor-page .stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(123, 63, 201, 0.3),
        0 0 60px rgba(168, 85, 247, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.consumidor-page .stat-item:hover::after {
    opacity: 1.5;
}

.consumidor-page .stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--c-secondary-light) 50%, var(--c-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* Glow atrás do número */
.consumidor-page .stat-number::after {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--c-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.consumidor-page .stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Linha decorativa inferior */
.consumidor-page .stats-section .container::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 3rem;
    background: linear-gradient(90deg, transparent, rgba(123, 63, 201, 0.3), rgba(168, 85, 247, 0.5), rgba(123, 63, 201, 0.3), transparent);
}

/* ======== SECTION PADRÃO (Fundo claro) ======== */
.consumidor-page .section {
    background: #FFFFFF;
}

.consumidor-page .section-header h2 {
    color: var(--c-dark);
}

.consumidor-page .section-header p {
    color: #6B7280;
}

.consumidor-page .section-header .text-gradient {
    background: var(--c-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consumidor-page .recursos-badge {
    background: rgba(123, 63, 201, 0.1) !important;
    color: var(--c-primary) !important;
    border: 1px solid rgba(123, 63, 201, 0.3) !important;
}

/* ======== SOLUTION CARDS ======== */
.consumidor-page .solution-card {
    background: #FFFFFF;
    border: 1px solid rgba(123, 63, 201, 0.15);
    transition: all 0.3s ease;
}

.consumidor-page .solution-card:hover {
    border-color: var(--c-primary);
    box-shadow: 0 20px 60px rgba(123, 63, 201, 0.15);
    transform: translateY(-5px);
}

.consumidor-page .solution-card h3 {
    color: var(--c-dark);
}

.consumidor-page .solution-card p {
    color: #6B7280;
}

.consumidor-page .antifraude-solution .solution-icon {
    background: var(--c-gradient);
}

.consumidor-page .antifraude-solution .solution-icon i {
    color: #FFFFFF;
}

.consumidor-page .financeiro-solution .solution-icon {
    background: linear-gradient(135deg, var(--c-secondary) 0%, #E879F9 100%);
}

.consumidor-page .financeiro-solution .solution-icon i {
    color: #FFFFFF;
}

.consumidor-page .solution-features li {
    color: #4B5563;
}

.consumidor-page .solution-features li i {
    color: var(--c-primary);
}

/* ======== GESTÃO FINANCEIRA - SEÇÃO ESCURA ======== */
.consumidor-page #gestao-financeira {
    background: var(--c-gradient-dark);
    position: relative;
}

.consumidor-page #gestao-financeira::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(123, 63, 201, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.consumidor-page #gestao-financeira .section-header {
    position: relative;
    z-index: 2;
}

.consumidor-page #gestao-financeira h2,
.consumidor-page #gestao-financeira h3,
.consumidor-page #gestao-financeira h4 {
    color: #FFFFFF !important;
}

.consumidor-page #gestao-financeira p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.consumidor-page #gestao-financeira .hero-badge {
    background: rgba(0, 217, 255, 0.15) !important;
    color: var(--c-secondary) !important;
    border: 1px solid rgba(0, 217, 255, 0.4) !important;
}

/* Financial Dashboard Preview */
.consumidor-page .financial-dashboard-preview {
    background: rgba(37, 37, 66, 0.8);
    border: 1px solid rgba(123, 63, 201, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: var(--c-glow);
    position: relative;
    z-index: 2;
}

.consumidor-page .dashboard-card {
    background: var(--c-gradient);
}

.consumidor-page .dashboard-card-title,
.consumidor-page .dashboard-card-period {
    color: rgba(255, 255, 255, 0.9);
}

.consumidor-page .dashboard-balance {
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.consumidor-page .summary-item .label {
    color: rgba(255, 255, 255, 0.7);
}

.consumidor-page .summary-item.income .value {
    color: var(--c-success);
}

.consumidor-page .summary-item.expense .value {
    color: var(--c-accent);
}

/* Financial Features */
.consumidor-page .financial-feature {
    background: rgba(37, 37, 66, 0.6);
    border: 1px solid rgba(123, 63, 201, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.consumidor-page .financial-feature:hover {
    border-color: var(--c-primary);
    box-shadow: var(--c-glow);
    transform: translateY(-3px);
}

.consumidor-page .financial-feature h4 {
    color: #FFFFFF;
}

.consumidor-page .financial-feature p {
    color: rgba(255, 255, 255, 0.7);
}

.consumidor-page .financial-feature-icon {
    background: var(--c-gradient);
}

.consumidor-page .financial-feature-icon i {
    color: #FFFFFF;
}

/* Categorias */
.consumidor-page .financial-categories {
    background: rgba(37, 37, 66, 0.6);
    border: 1px solid rgba(123, 63, 201, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.consumidor-page .financial-categories h3 {
    color: #FFFFFF;
}

.consumidor-page .category-item {
    background: rgba(123, 63, 201, 0.15);
    border: 1px solid rgba(123, 63, 201, 0.2);
    color: #FFFFFF;
}

.consumidor-page .category-item:hover {
    background: rgba(123, 63, 201, 0.3);
    border-color: var(--c-primary);
    box-shadow: 0 0 20px rgba(123, 63, 201, 0.3);
}

.consumidor-page .categories-note {
    color: var(--c-secondary);
}

/* ======== FEATURE CARDS (Proteção Antifraude) ======== */
.consumidor-page .feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(123, 63, 201, 0.1);
}

.consumidor-page .feature-card:hover {
    border-color: var(--c-primary);
    box-shadow: 0 20px 60px rgba(123, 63, 201, 0.12);
    transform: translateY(-5px);
}

.consumidor-page .feature-card h3 {
    color: var(--c-dark);
}

.consumidor-page .feature-card p {
    color: #6B7280;
}

.consumidor-page .feature-icon {
    background: var(--c-gradient);
}

.consumidor-page .feature-icon i {
    color: #FFFFFF;
}

/* ======== COMO FUNCIONA - SEÇÃO ESCURA ======== */
.consumidor-page #como-funciona {
    background: linear-gradient(180deg, var(--c-dark) 0%, var(--c-dark-light) 100%);
    position: relative;
}

.consumidor-page #como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(123, 63, 201, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.consumidor-page #como-funciona .section-header {
    position: relative;
    z-index: 2;
}

.consumidor-page #como-funciona h2,
.consumidor-page #como-funciona h3 {
    color: #FFFFFF !important;
}

.consumidor-page #como-funciona p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.consumidor-page #como-funciona .hero-badge {
    background: rgba(123, 63, 201, 0.2) !important;
    color: var(--c-secondary) !important;
    border: 1px solid rgba(0, 217, 255, 0.4) !important;
}

.consumidor-page .flow-step {
    position: relative;
    z-index: 2;
}

.consumidor-page .flow-step-number {
    background: var(--c-gradient);
    color: #FFFFFF;
    box-shadow: var(--c-glow);
}

.consumidor-page .flow-step-icon {
    background: rgba(37, 37, 66, 0.8);
    border: 2px solid rgba(123, 63, 201, 0.4);
}

.consumidor-page .flow-step-icon i {
    color: var(--c-secondary);
}

.consumidor-page .flow-step-content {
    background: rgba(37, 37, 66, 0.6);
    border: 1px solid rgba(123, 63, 201, 0.2);
    backdrop-filter: blur(10px);
}

.consumidor-page .flow-step-content h3 {
    color: #FFFFFF;
}

.consumidor-page .flow-step-content p {
    color: rgba(255, 255, 255, 0.7);
}

.consumidor-page .flow-step-content:hover {
    border-color: var(--c-primary);
    box-shadow: var(--c-glow);
}

/* ======== SECURITY SECTION ======== */
.consumidor-page .security-section {
    background: #F8F9FC;
}

.consumidor-page .security-card {
    background: #FFFFFF;
    border: 1px solid rgba(123, 63, 201, 0.1);
}

.consumidor-page .security-card:hover {
    border-color: var(--c-primary);
    box-shadow: 0 20px 60px rgba(123, 63, 201, 0.1);
    transform: translateY(-5px);
}

.consumidor-page .security-card h3 {
    color: var(--c-dark);
}

.consumidor-page .security-card p {
    color: #6B7280;
}

.consumidor-page .security-icon {
    background: var(--c-gradient);
}

.consumidor-page .security-icon i {
    color: #FFFFFF;
}

.consumidor-page .security-highlight {
    background: linear-gradient(135deg, rgba(123, 63, 201, 0.08) 0%, rgba(0, 217, 255, 0.08) 100%);
    border: 1px solid rgba(123, 63, 201, 0.2);
}

.consumidor-page .security-highlight h4 {
    color: var(--c-dark);
}

.consumidor-page .security-highlight p {
    color: #4B5563;
}

.consumidor-page .security-highlight-icon i {
    color: var(--c-primary);
}

/* ======== CTA FINAL - SEÇÃO IMPACTANTE ======== */
.consumidor-page .cta-final {
    background: var(--c-gradient-alt);
    position: relative;
    overflow: hidden;
}

.consumidor-page .cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.consumidor-page .cta-final .section-header {
    position: relative;
    z-index: 2;
}

.consumidor-page .cta-final h2 {
    color: #FFFFFF !important;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.consumidor-page .cta-final p {
    color: rgba(255, 255, 255, 0.95);
}

/* CTA Features Grid - Futurista */
.consumidor-page .cta-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.consumidor-page .cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
}

.consumidor-page .cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.consumidor-page .cta-feature-item i {
    font-size: 1.25rem;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.consumidor-page .cta-feature-item span {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
}

/* CTA Download Buttons - Store Style */
.consumidor-page .cta-download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.consumidor-page .cta-store-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.consumidor-page .cta-store-btn.google-play {
    background: #FFFFFF;
    border: 2px solid transparent;
}

.consumidor-page .cta-store-btn.google-play i {
    font-size: 2rem;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consumidor-page .cta-store-btn.google-play:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.consumidor-page .cta-store-btn.app-store {
    background: #000000;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.consumidor-page .cta-store-btn.app-store i {
    font-size: 2rem;
    color: #FFFFFF;
}

.consumidor-page .cta-store-btn.app-store:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.consumidor-page .store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.consumidor-page .store-btn-small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.consumidor-page .cta-store-btn.google-play .store-btn-small {
    color: #666;
}

.consumidor-page .cta-store-btn.app-store .store-btn-small {
    color: rgba(255, 255, 255, 0.7);
}

.consumidor-page .store-btn-large {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.consumidor-page .cta-store-btn.google-play .store-btn-large {
    color: #1a1a2e;
}

.consumidor-page .cta-store-btn.app-store .store-btn-large {
    color: #FFFFFF;
}

/* ======== HERO PHONE ======== */
.consumidor-page .hero-phone {
    background: linear-gradient(145deg, #1a1a2e 0%, #252542 100%);
    border: 3px solid rgba(123, 63, 201, 0.4);
    box-shadow: var(--c-glow), 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ======== RESPONSIVO ======== */
@media (max-width: 1024px) {
    .consumidor-page .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consumidor-page .stat-item {
        padding: 1.75rem 1.25rem;
    }
    
    .consumidor-page .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .consumidor-page .hero {
        padding-top: 6rem;
    }
    
    .consumidor-page .solution-card {
        padding: 1.5rem;
    }
    
    .consumidor-page .financial-feature {
        padding: 1.25rem;
    }
    
    .consumidor-page .hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .consumidor-page .stats-section {
        padding: 3rem 0;
    }
    
    .consumidor-page .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consumidor-page .stat-item {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }
    
    .consumidor-page .stat-number {
        font-size: 2rem;
    }
    
    .consumidor-page .stat-label {
        font-size: 0.875rem;
    }
    
    /* CTA Features Responsivo */
    .consumidor-page .cta-features-grid {
        gap: 0.75rem;
    }
    
    .consumidor-page .cta-feature-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .consumidor-page .cta-feature-item i {
        font-size: 1rem;
    }
    
    /* CTA Download Buttons Responsivo */
    .consumidor-page .cta-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .consumidor-page .cta-store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
