/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - MEU DINHEIRO
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #7b4cf2;
    --color-primary-dark: #6234db;
    --color-primary-light: #f1ecfe;
    --color-primary-light-hover: #e5dbfb;
    
    --color-text-main: #1e1b26;
    --color-text-muted: #5c5766;
    --color-text-light: #908b9c;
    
    --color-bg-light: #f9f8fc;
    --color-bg-white: #ffffff;
    --color-bg-dark: #121016;
    --color-bg-footer: #191621;
    
    --color-success: #10b981;
    --color-success-light: #e6f7f0;
    --color-danger: #ef4444;
    --color-danger-light: #fee2e2;
    --color-warning: #f59e0b;
    --color-warning-light: #fef3c7;
    
    --color-blue: #3b82f6;
    --color-blue-light: #eff6ff;
    --color-cyan: #06b6d4;
    --color-cyan-light: #ecfeff;
    --color-pink: #ec4899;
    --color-pink-light: #fdf2f8;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(123, 76, 242, 0.04);
    --shadow-lg: 0 16px 40px rgba(123, 76, 242, 0.08);
    --shadow-premium: 0 20px 50px rgba(123, 76, 242, 0.12);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-circle: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.max-width-md {
    max-width: 768px;
}

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

section {
    padding: 100px 0;
    position: relative;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.25;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 76, 242, 0.25);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    border-color: #e5e0f5;
    color: var(--color-text-main);
}

.btn-outline:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
}

.btn-white:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-bg-white);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn-contact {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--color-bg-white);
    border-color: rgba(255, 255, 255, 0.25);
    margin-top: 15px;
}

.btn-contact:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    border-color: var(--color-bg-white);
    transform: translateY(-3px);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(30deg);
    transition: 0s;
}

.btn-glow:hover::after {
    left: 120%;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon {
    flex-shrink: 0;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 14px 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(123, 76, 242, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.03em;
}

.brand-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

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

.logo-text.light {
    color: var(--color-bg-white);
}

.logo-text.light span {
    color: var(--color-bg-white);
    opacity: 0.85;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

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

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

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 170px;
    padding-bottom: 110px;
    background: radial-gradient(circle at 80% 20%, #f6f3ff 0%, var(--color-bg-white) 70%);
    overflow: hidden;
}

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

.badge-free {
    display: inline-flex;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

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

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

.hero-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ios-soon {
    display: inline-flex;
    align-items: center;
    border: 2px dashed #d1c8f5;
    background-color: rgba(241, 236, 254, 0.2);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    cursor: default;
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
}

.ios-soon span {
    opacity: 0.7;
    position: relative;
    padding-left: 18px;
}

.ios-soon span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: var(--radius-circle);
    background-color: var(--color-warning);
}

/* Device Mockups visual area */
.hero-visual {
    position: relative;
    width: 100%;
}

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

.mockup-desktop {
    width: 480px;
    height: 290px;
    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 50px;
    left: 20px;
    z-index: 1;
    overflow: hidden;
    transform: perspective(1000px) rotateY(15deg) rotateX(4deg);
    animation: floatDesktop 6s ease-in-out infinite;
}

.desktop-header {
    height: 26px;
    background: #f4f3f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
}

.desktop-dots {
    display: flex;
    gap: 4px;
}

.desktop-dots span {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-circle);
    background: #e2e1e7;
}

.desktop-dots span:nth-child(1) { background: #ff5f56; }
.desktop-dots span:nth-child(2) { background: #ffbd2e; }
.desktop-dots span:nth-child(3) { background: #27c93f; }

.desktop-address {
    font-size: 0.65rem;
    color: var(--color-text-light);
    background: #ffffff;
    padding: 2px 20px;
    border-radius: var(--radius-sm);
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    text-align: center;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.desktop-screen {
    height: calc(100% - 26px);
    background: var(--color-bg-light);
}

/* App layout emulation in desktop mockup */
.app-layout {
    display: flex;
    height: 100%;
}

.app-sidebar {
    width: 110px;
    background: #ffffff;
    border-right: 1px solid rgba(0,0,0,0.04);
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.55rem;
    font-weight: 700;
}

.sidebar-icon {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: var(--color-primary);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-menu span {
    font-size: 0.5rem;
    color: var(--color-text-muted);
    padding: 4px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.sidebar-menu span.active {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.app-main {
    flex-grow: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.app-header-bar h3 {
    font-size: 0.75rem;
}

.date-badge {
    font-size: 0.55rem;
    background: #ffffff;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.app-content-preview {
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

.preview-item {
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.55rem;
}

.item-dot {
    width: 6px;
    height: 6px;
    border-radius: var(--radius-circle);
}

.item-dot.danger { background: var(--color-danger); }
.item-dot.success { background: var(--color-success); }

.item-title {
    flex-grow: 1;
    margin-left: 6px;
    font-weight: 500;
}

.item-val {
    font-weight: 600;
}

.item-val.negative { color: var(--color-danger); }
.item-val.positive { color: var(--color-success); }

/* Phone Mockup overlay */
.mockup-phone {
    width: 175px;
    height: 350px;
    background: #111113;
    border-radius: 28px;
    box-shadow: var(--shadow-premium);
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 2;
    padding: 8px;
    border: 3px solid #28282b;
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
    animation: floatPhone 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.phone-speaker {
    width: 45px;
    height: 12px;
    background: #000000;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-light);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-app-header {
    background: var(--color-primary);
    color: #ffffff;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.phone-app-body {
    padding: 10px;
}

.phone-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

.card-title {
    font-size: 0.55rem;
    font-weight: 600;
}

.card-amount {
    font-size: 0.55rem;
    font-weight: 700;
    text-align: right;
}

.card-amount small {
    display: block;
    font-size: 0.4rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background: #f1ecfe;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--color-success);
}

.card-sub {
    font-size: 0.45rem;
    color: var(--color-text-light);
}

/* Animations for Mockups floating */
@keyframes floatDesktop {
    0%, 100% { transform: perspective(1000px) rotateY(15deg) rotateX(4deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(15deg) rotateX(4deg) translateY(-12px); }
}

@keyframes floatPhone {
    0%, 100% { transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(-16px); }
}

/* ==========================================================================
   PLATFORM SECTION
   ========================================================================== */
.platform-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid rgba(123, 76, 242, 0.04);
}

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

.platform-card {
    background-color: var(--color-bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: var(--transition-normal);
}

.platform-card:hover .platform-icon {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.platform-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.platform-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.badge-feature {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
    background-color: var(--color-bg-white);
}

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

.feature-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
    background-color: var(--color-bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 76, 242, 0.1);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper.purple { background-color: var(--color-primary-light); color: var(--color-primary); }
.feature-icon-wrapper.blue { background-color: var(--color-blue-light); color: var(--color-blue); }
.feature-icon-wrapper.cyan { background-color: var(--color-cyan-light); color: var(--color-cyan); }
.feature-icon-wrapper.green { background-color: var(--color-success-light); color: var(--color-success); }
.feature-icon-wrapper.orange { background-color: var(--color-warning-light); color: var(--color-warning); }
.feature-icon-wrapper.pink { background-color: var(--color-pink-light); color: var(--color-pink); }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==========================================================================
   DASHBOARD PREVIEW SECTION
   ========================================================================== */
.dashboard-section {
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.dashboard-features-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.feat-bullet {
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    border-radius: var(--radius-circle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(123, 76, 242, 0.2);
}

.dashboard-feat-item div {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.dashboard-feat-item strong {
    color: var(--color-text-main);
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

/* Premium Dashboard Interactive Widget */
.premium-dashboard-widget {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0edf8;
    padding-bottom: 18px;
    margin-bottom: 24px;
}

.widget-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.widget-date {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.widget-summary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.summary-mini-card {
    background-color: var(--color-bg-light);
    border: 1px solid #f1f0f5;
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.card-val {
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.card-val.success { color: var(--color-success); }
.card-val.danger { color: var(--color-danger); }
.card-val.primary { color: var(--color-primary); }

.widget-accounts-section {
    margin-bottom: 24px;
}

.widget-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.widget-acc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.acc-pill {
    background: #f8f6fc;
    border: 1px dashed #dcd6ee;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 10px;
    font-size: 0.78rem;
}

.acc-name {
    color: var(--color-text-muted);
    font-weight: 500;
}

.acc-val {
    font-weight: 600;
    color: var(--color-text-main);
}

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

.pending-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.column-title.danger { color: var(--color-danger); }
.column-title.success { color: var(--color-success); }

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

.pending-item {
    background-color: var(--color-bg-white);
    border: 1px solid #f0f0f4;
    border-radius: var(--radius-md);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.pending-item:hover {
    transform: translateX(3px);
    border-color: rgba(123, 76, 242, 0.15);
    box-shadow: var(--shadow-sm);
}

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

.pending-icon {
    width: 26px;
    height: 26px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.pending-icon.danger {
    background-color: var(--color-danger-light);
    color: var(--color-danger);
}

.pending-icon.success {
    background-color: var(--color-success-light);
    color: var(--color-success);
}

.pending-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.pending-sub {
    font-size: 0.68rem;
    color: var(--color-text-light);
}

.pending-value {
    font-size: 0.82rem;
    font-weight: 700;
}

.pending-value.danger { color: var(--color-danger); }
.pending-value.success { color: var(--color-success); }

/* ==========================================================================
   REPORTS / CHARTS SECTION (Gráficos)
   ========================================================================== */
.reports-section {
    background-color: var(--color-bg-white);
}

.chart-tab-container {
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-top: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(123, 76, 242, 0.03);
}

.chart-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    background: #eeeaf8;
    padding: 6px;
    border-radius: var(--radius-lg);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn:hover {
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--color-bg-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.tab-content {
    display: none;
}

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

.tab-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.tab-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.tab-info p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    margin-bottom: 24px;
}

.visual-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.bullet-item span {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-circle);
}

.success-dot { background-color: var(--color-success); }
.danger-dot { background-color: var(--color-danger); }
.purple-dot { background-color: var(--color-primary); }
.gray-dot { background-color: var(--color-text-light); }
.blue-dot { background-color: var(--color-blue); }

.tab-screenshot-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
}

.tab-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.image-showcase {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px;
    width: 100%;
    max-width: 500px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.screenshot-img.mobile-shot {
    max-width: 250px;
}

/* Screenshot fallback CSS elements */
.screenshot-fallback {
    width: 100%;
    display: none; /* Only triggers when image errors */
    flex-direction: column;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    font-size: 0.8rem;
}

.fallback-desktop-header {
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    padding: 8px;
    border-radius: 6px 6px 0 0;
    text-align: center;
}

.fallback-desktop-body {
    background: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fallback-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f3f6;
    padding-bottom: 6px;
    font-weight: 500;
}

.fallback-desktop-footer {
    background: #eeeaf8;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    border-radius: 0 0 6px 6px;
}

.mobile-fallback {
    max-width: 260px;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid #ddd;
}

.fallback-mobile-header {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 12px;
}

.fallback-mobile-graph {
    background: var(--color-bg-light);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.chart-amount {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.green-graph .chart-amount { color: var(--color-success); }
.red-graph .chart-amount { color: var(--color-text-main); }

.chart-line-placeholder {
    display: flex;
    justify-content: center;
}

.fallback-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fallback-mobile-list.empty {
    color: var(--color-text-light);
    font-style: italic;
    padding: 15px;
    font-size: 0.72rem;
}

.fb-mobile-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 600;
    border-bottom: 1px solid #f1f1f5;
    padding-bottom: 4px;
}

.fallback-donut-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.donut-chart-svg {
    transform: rotate(-90deg);
}

.donut-segment {
    animation: donutAnimate 1s ease-out;
}

.fb-mobile-cat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
}

.cat-pill {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-sm);
}

.cat-pill.blue { background-color: var(--color-blue); }
.cat-pill.purple { background-color: #7c3aed; }
.cat-pill.violet { background-color: #a78bfa; }

@keyframes donutAnimate {
    from { stroke-dasharray: 0 100; }
}

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

/* ==========================================================================
   FAQ SECTION (Dúvidas)
   ========================================================================= */
.faq-section {
    background-color: var(--color-bg-light);
}

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

.faq-item {
    background: var(--color-bg-white);
    border: 1px solid rgba(123, 76, 242, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(123, 76, 242, 0.15);
    box-shadow: var(--shadow-md);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    gap: 20px;
}

.faq-icon {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   CTA & CONTACT SECTION (Dúvidas por Email)
   ========================================================================== */
.cta-contact-section {
    background-color: var(--color-bg-white);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4c25b7 100%);
    border-radius: var(--radius-xl);
    padding: 70px 50px;
    color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

/* Abstract visual elements in CTA */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-circle);
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-title {
    color: var(--color-bg-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.contact-block {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 35px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-text {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 10px;
    font-weight: 500;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--color-bg-footer);
    color: #e3e0eb;
    padding: 70px 0 30px 0;
    border-top: 1px solid #231f2f;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

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

.footer-slogan {
    color: #928ca1;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.footer-links-group h4 {
    color: var(--color-bg-white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.footer-links-group a {
    color: #928ca1;
    font-size: 0.9rem;
}

.footer-links-group a:hover {
    color: var(--color-bg-white);
    transform: translateX(2px);
}

.footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid #231f2f;
    padding-top: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    color: #6a6478;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ==========================================================================
   MEDIA QUERIES (Responsiveness)
   ========================================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        gap: 30px;
    }
    
    .mockup-wrapper {
        height: 380px;
    }
    
    .mockup-desktop {
        width: 380px;
        height: 230px;
    }
    
    .mockup-phone {
        width: 140px;
        height: 280px;
        right: 10px;
    }
    
    .platform-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .mockup-wrapper {
        height: 340px;
    }
    
    .mockup-desktop {
        left: 50%;
        transform: translateX(-65%) perspective(1000px) rotateY(15deg) rotateX(4deg);
        animation: floatDesktopMobile 6s ease-in-out infinite;
    }
    
    .mockup-phone {
        right: 50%;
        transform: translateX(110%) perspective(1000px) rotateY(-10deg) rotateX(2deg);
        animation: floatPhoneMobile 6s ease-in-out infinite;
        animation-delay: 1.5s;
    }
    
    @keyframes floatDesktopMobile {
        0%, 100% { transform: translateX(-65%) perspective(1000px) rotateY(15deg) rotateX(4deg) translateY(0); }
        50% { transform: translateX(-65%) perspective(1000px) rotateY(15deg) rotateX(4deg) translateY(-10px); }
    }

    @keyframes floatPhoneMobile {
        0%, 100% { transform: translateX(110%) perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(0); }
        50% { transform: translateX(110%) perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(-14px); }
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-actions {
        gap: 12px;
    }
    
    .btn-header-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .platform-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .widget-pending-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius-md);
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links-row {
        gap: 20px;
    }
}
