/* Reset e variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a90e2;
    --secondary-color: #2c5aa0;
    --accent-color: #6bb6ff;
    --dark-color: #1A1A2E;
    --light-color: #F7F7F7;
    --text-color: #333;
    --text-light: #666;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(74, 144, 226, 0.1);
    --shadow-md: 0 4px 12px rgba(74, 144, 226, 0.15);
    --shadow-lg: 0 10px 30px rgba(74, 144, 226, 0.2);
    --gradient-primary: linear-gradient(135deg, #4a90e2 0%, #6bb6ff 100%);
    --gradient-secondary: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --white: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --success-color: #52c41a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: white;
}

body.menu-open {
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.mobile-nav-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.nav-cta-mobile {
    display: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    top: 8px;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 8px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Blocks */
.hero-block {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-block-left {
    animation-delay: 0.2s;
}

.hero-block-right {
    animation-delay: 0.4s;
}

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

/* Hero Content */
.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(74, 144, 226, 0.1);
}



/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hero Image */
.hero-image-container {
    position: relative;
    padding: 3rem;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.card-1 {
    top: 15%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

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

.card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.card-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.card-change.positive {
    color: var(--success-color);
}

/* Section Navigator */
.section-navigator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.next-section-btn {
    background: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--text-primary);
}

.next-section-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.arrow-down {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Section transitions */
.section-content {
    min-height: 100vh;
    padding: 80px 2rem;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Dashboard Section */
.dashboard-section {
    background: none;
    position: relative;
    padding: 80px 0;
}

/* BI Section */
.bi-section {
    background: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.bi-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* BI Preview Image */
.bi-preview {
    width: 100%;
    max-width: 800px;
    height: auto;
    transition: var(--transition);
}

.bi-preview:hover {
    transform: translateY(-8px);
}

.bi-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.bi-content {
    flex: 60;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: flex-end;
}

.bi-preview {
    width: 130%;
    height: auto;
    object-fit: contain;
    margin-left: 3rem;
    margin-right: -3rem;
    margin-top: -2rem;
}

.dashboard-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 80vh;
    position: relative;
}

.bi-container .section-header {
    text-align: left;
    margin-bottom: 0;
    flex: 40;
    position: relative;
    z-index: 10;
    align-self: flex-start;
    margin-top: -1rem;
}

.dashboard-container .section-header {
    text-align: left;
    margin-bottom: 0;
    flex: 40;
    position: relative;
    z-index: 10;
    align-self: flex-start;
    margin-top: -1rem;
}

.section-badge-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 24px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-color);
    flex: 1;
}

.section-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 14px 1.25rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.section-cta-btn:hover {
    background: #3d7bc7;
    transform: translateY(-3px);
}

.section-cta-btn:hover .btn-icon {
    transform: rotate(-45deg) translateX(3px);
}

.section-cta-btn .btn-icon {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* Dashboard Content */
.dashboard-content {
    flex: 60;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: flex-start;
}

.dashboard-preview {
    width: 120%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-left: -15%;
    margin-top: -3rem;
}

/* Features List */
.features-list-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 24px;
}

.feature-card {
    position: relative;
    background: rgba(74, 144, 226, 0.08);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(107, 182, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 144, 226, 0.2);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.1);
}

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

.feature-card:hover::after {
    opacity: 0.2;
}

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

.feature-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
    line-height: 1.2;
    flex: 1;
}

.feature-card:hover .feature-header h3 {
    color: var(--primary-color);
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(107, 182, 255, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.05);
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: white;
}

.feature-content h3 {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-card:hover .feature-content h3 {
    color: var(--primary-color);
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-content p {
    color: var(--text-primary);
}

/* Dashboard Mockup */
/* Desktop only - mockup grande e inclinado */
@media (min-width: 1025px) {
    .dashboard-mockup {
        perspective: 1000px;
        position: absolute;
        top: 0;
        right: -15%;
        width: 90%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
}

/* Fallback para telas menores */
.dashboard-mockup {
    perspective: 1000px;
}

/* Desktop mockup - grande e inclinado */
@media (min-width: 1025px) {
    .mockup-container {
        width: 85vw;
        height: auto;
        min-height: 65vh;
        transform: rotateY(8deg) rotateX(-8deg);
        position: relative;
        z-index: 1;
    }
}

/* Base styles para mockup */
.mockup-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* Removed hover effect from mockup container */

.mockup-header {
    background: #f1f5f9;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ef4444; }
.control.yellow { background: #f59e0b; }
.control.green { background: #10b981; }

.mockup-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.mockup-content {
    padding: 0;
    background: #fafbfc;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    max-height: 100%;
}

/* Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #f0f4f8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.metric-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #e2e8f0;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-title {
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.metric-main-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-comparison {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.comparison-arrow {
    font-size: 0.8rem;
    font-weight: bold;
}

.comparison-arrow.up {
    color: #10b981;
}

.comparison-arrow.down {
    color: #ef4444;
}

.comparison-text {
    font-size: 0.7rem;
    color: #6b7280;
}

/* Chart Container */
.chart-container {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.chart-header h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.chart-area {
    height: 120px;
}

.chart {
    width: 100%;
    height: 100%;
}

/* Top Products */
.top-products {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.top-products h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.product-name {
    font-size: 0.8rem;
    width: 80px;
    flex-shrink: 0;
}

.product-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 1s ease;
}

.product-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 30px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .chart-hero .hero-title {
        font-size: 1.6rem;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 100%);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 16px;
        padding: 0.5rem 0;
    }

    .mobile-nav-actions {
        display: flex;
    }

    .nav-cta-mobile {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        font-size: 16px;
    }

    .logo {
        max-height: 30px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .dashboard-container {
        gap: 3rem;
    }

    .dashboard-content {
        margin-top: 2rem;
        justify-content: center;
    }

    .dashboard-preview {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        display: block;
    }

    .precificador-container {
        flex-direction: column;
    }

    .precificador-container .section-header {
        order: 1;
        text-align: center;
    }

    .precificador-content {
        order: 2;
    }

    .bi-container {
        flex-direction: column;
    }

    .bi-container .section-header {
        order: 1;
        text-align: center;
    }

    .bi-content {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .bi-preview {
        width: 95%;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
        align-items: center;
    }
}

/* Small phones (320px - 374px) */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .nav-container {
        padding: 0.75rem;
    }

    .nav-cta-mobile {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }

    .logo {
        max-height: 25px;
    }

    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }

    .price-value {
        font-size: 1.8rem;
    }
}

/* Medium phones (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.875rem;
    }

    .price-value {
        font-size: 2rem;
    }
}

/* Larger phones (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }
}

/* ===============================
   DASHBOARD CARDS - ESTRUTURA REAL
   =============================== */

/* Header Section */
.dashboard-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dashboard-header h2 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-header p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.dashboard-date-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.date-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-filter-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.date-filter-group input[type="date"],
.date-filter-group input[type="month"] {
    padding: 0.5rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: white;
    color: var(--text-primary);
    font-size: 0.875rem;
    min-width: 140px;
}

.filter-refresh-btn {
    padding: 0.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.filter-refresh-btn:hover {
    background: var(--primary-dark);
}

/* Saldo Month Selector */
.saldo-month-selector {
    margin-bottom: 0.5rem;
}

.saldo-month-selector input[type="month"] {
    width: 100%;
    min-width: unset;
}

/* Grid Layouts do Dashboard Real */
.agenda-grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.margin-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Estilos dos Cards do Dashboard Real */
.dashboard-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

/* Removed hover effects for mockup */

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

.dashboard-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.dashboard-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.dashboard-card-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.dashboard-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.dashboard-card-list {
    max-height: 120px;
    overflow-y: auto;
}

/* Data Items */
.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.data-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(3px);
}

.data-item-confirmado {
    border-left-color: #3B82F6;
}

.data-item-producao {
    border-left-color: #6366f1;
}

.data-item-entregue {
    border-left-color: #22C55E;
}

.data-item-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.data-item-value {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
}

.data-item-date {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Card Status Colors */
.dashboard-card.card-warning {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.dashboard-card.card-success {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.dashboard-card.card-danger {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

/* Responsive para Dashboard Cards */
@media (max-width: 1024px) {
    .agenda-grid-3-cols {
        grid-template-columns: 1fr;
    }
    
    .margin-cards-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-top-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .dashboard-header {
        text-align: center;
    }
    
    .dashboard-date-filter {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Ajustar mockup para tablet */
    .dashboard-container {
        flex-direction: column;
        min-height: auto;
        gap: 2rem;
    }
    
    .dashboard-mockup {
        position: static;
        width: 100%;
        height: auto;
    }
    
    .mockup-container {
        width: 95vw;
        height: auto;
        min-height: 55vh;
        transform: rotateY(3deg) rotateX(-4deg);
    }
}

@media (max-width: 768px) {
    .dashboard-card {
        padding: 1rem;
    }
    
    .dashboard-card h3 {
        font-size: 0.9rem;
    }
    
    .dashboard-card-value {
        font-size: 1.5rem;
    }
    
    .dashboard-card-list {
        max-height: 150px;
    }
    
    .dashboard-date-filter {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .date-filter-group {
        width: 100%;
    }
    
    .date-filter-group input[type="date"],
    .date-filter-group input[type="month"] {
        width: 100%;
        min-width: unset;
    }
    
    .filter-refresh-btn {
        align-self: center;
        min-width: 40px;
    }
    
    /* Dashboard mobile adjustments */
    .dashboard-container {
        flex-direction: column;
        min-height: auto;
        gap: 2rem;
    }
    
    .dashboard-mockup {
        position: static;
        width: 100%;
        height: auto;
    }
    
    .mockup-container {
        width: 98vw;
        height: auto;
        min-height: 60vh;
        transform: none;
    }
    
    .section-header {
        order: 1;
    }
    
    .dashboard-content {
        order: 2;
    }
}

@media (max-width: 480px) {
    .agenda-grid-3-cols,
    .margin-cards-row {
        gap: 1rem;
    }

    .dashboard-card-value {
        font-size: 1.25rem;
    }
}

/* === SEÇÃO FINANCEIRO === */
.financeiro-section {
    background: linear-gradient(135deg, rgba(204, 63, 12, 0.05) 0%, rgba(204, 63, 12, 0.08) 100%);
    min-height: 100vh;
    display: flex;
    padding: 80px 0;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.financeiro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.financeiro-container .section-header {
    max-width: 100%;
    order: 1;
}

.financeiro-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    order: 2;
}

.financeiro-preview {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.financeiro-preview:hover {
    transform: scale(1.02);
}

/* Wrapper para imagem e objetos flutuantes */
.financeiro-image-wrapper {
    position: relative;
    display: inline-block;
}

/* Ícones Flutuantes Financeiros */
.floating-finance-icon {
    position: absolute;
    animation: floatFinance 3s ease-in-out infinite;
}

@keyframes floatFinance {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}

.finance-circle {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(204, 63, 12, 0.2);
    border: 2px solid rgba(204, 63, 12, 0.15);
    transition: all 0.3s ease;
}

.finance-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(204, 63, 12, 0.3);
}

.finance-icon-1 {
    top: 5%;
    left: -10%;
    animation-delay: 0s;
}

.finance-icon-2 {
    top: 35%;
    right: -8%;
    animation-delay: 0.8s;
}

.finance-icon-3 {
    bottom: 30%;
    left: -8%;
    animation-delay: 1.6s;
}

.finance-icon-4 {
    bottom: 5%;
    right: -10%;
    animation-delay: 2.4s;
}

/* CTA da seção Financeiro */
.financeiro-cta {
    margin-top: -2rem;
    display: flex;
    justify-content: center;
}

.cta-button-financeiro {
    background: linear-gradient(135deg, #cc3f0c, #a0320a);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 63, 12, 0.3);
}

.cta-button-financeiro:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 63, 12, 0.4);
    background: linear-gradient(135deg, #a0320a, #801f08);
}

.cta-button-financeiro svg {
    transition: transform 0.3s ease;
}

.cta-button-financeiro:hover svg {
    transform: translateX(5px);
}

/* Override de cores para elementos da seção Financeiro */
.financeiro-section .feature-card {
    background: rgba(204, 63, 12, 0.06);
    border: 1px solid rgba(204, 63, 12, 0.1);
}

.financeiro-section .feature-card:hover {
    border-color: rgba(204, 63, 12, 0.2);
    box-shadow: 0 10px 20px rgba(204, 63, 12, 0.1);
}

.financeiro-section .feature-icon {
    background: linear-gradient(135deg, rgba(204, 63, 12, 0.1), rgba(160, 50, 10, 0.1));
}

.financeiro-section .feature-icon svg {
    color: #cc3f0c;
}

.financeiro-section .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #cc3f0c, #a0320a);
}

.financeiro-section .feature-card:hover .feature-icon svg {
    color: white;
}

.financeiro-section .feature-card:hover h3 {
    color: #cc3f0c;
}

.financeiro-section .section-title .gradient-text {
    background: linear-gradient(135deg, #cc3f0c, #a0320a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 1024px) {
    .financeiro-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .floating-finance-icon {
        display: none;
    }
}

@media (max-width: 768px) {
    .financeiro-container {
        gap: 2rem;
    }

    .financeiro-preview {
        max-width: 400px;
    }
}

/* === SEÇÃO AGENDA === */
.agenda-section {
    background: white;
    min-height: 100vh;
    display: flex;
    padding: 80px 0;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.agenda-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.agenda-container .section-header {
    max-width: 100%;
}

.agenda-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.agenda-preview {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.agenda-preview:hover {
    transform: scale(1.02);
}

/* Wrapper para imagem e objetos flutuantes */
.agenda-image-wrapper {
    position: relative;
    display: inline-block;
}

/* Ícones Flutuantes de Delivery */
.floating-delivery-icon {
    position: absolute;
    animation: floatDelivery 3s ease-in-out infinite;
}

@keyframes floatDelivery {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(255, 208, 70, 0.25);
    border: 2px solid rgba(255, 208, 70, 0.3);
    transition: all 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 208, 70, 0.35);
}

.delivery-icon-1 {
    top: 10%;
    left: -8%;
    animation-delay: 0s;
}

.delivery-icon-2 {
    top: 40%;
    right: -6%;
    animation-delay: 0.8s;
}

.delivery-icon-3 {
    bottom: 25%;
    left: -5%;
    animation-delay: 1.6s;
}

.delivery-icon-4 {
    bottom: 10%;
    right: -8%;
    animation-delay: 2.4s;
}

@media (max-width: 1024px) {
    .floating-delivery-icon {
        display: none;
    }
}

/* CTA da seção Agenda */
.agenda-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.cta-button-agenda {
    background: linear-gradient(135deg, #ffd046, #ffc107);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 208, 70, 0.3);
}

.cta-button-agenda:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 208, 70, 0.4);
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.cta-button-agenda svg {
    transition: transform 0.3s ease;
}

.cta-button-agenda:hover svg {
    transform: translateX(5px);
}

/* Override de cores para elementos da seção Agenda */
.agenda-section .feature-card {
    background: rgba(255, 208, 70, 0.08);
    border: 1px solid rgba(255, 208, 70, 0.1);
}

.agenda-section .feature-card:hover {
    border-color: rgba(255, 208, 70, 0.2);
    box-shadow: 0 10px 20px rgba(255, 208, 70, 0.1);
}

.agenda-section .feature-icon {
    background: linear-gradient(135deg, rgba(255, 208, 70, 0.1), rgba(255, 193, 7, 0.1));
}

.agenda-section .feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #ffd046, #ffc107);
}

.agenda-section .feature-card:hover .feature-icon svg {
    color: white;
}

.agenda-section .feature-card:hover h3 {
    color: #000000;
}


.agenda-section .section-title .gradient-text {
    background: linear-gradient(135deg, #ffd046, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 1024px) {
    .agenda-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .agenda-container .section-header {
        order: 1;
    }

    .agenda-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .agenda-container {
        gap: 2rem;
    }

    .agenda-preview {
        max-width: 400px;
    }
}

/* Seção Precificador */
/* Variáveis de cor verde para esta seção */
.precificador-section {
    --section-primary: #22c55e;
    --section-secondary: #16a34a;
    --section-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Override de cores para elementos da seção Precificador */
.precificador-section .feature-item {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.precificador-section .feature-item:hover {
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.1);
}

.precificador-section .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
}

.precificador-section .feature-item:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.precificador-section .feature-item::before {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(22, 163, 74, 0.05));
}

.precificador-section .feature-item:hover::before {
    opacity: 1;
}

.precificador-section .feature-item:hover h4 {
    color: #22c55e;
}

.precificador-section .feature-item:hover .feature-header h4 {
    color: #22c55e;
}

.precificador-section .feature-item:hover .feature-icon-wrapper svg {
    color: white;
}

.precificador-section .cta-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.precificador-section .section-title .gradient-text {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.precificador-section {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(22, 163, 74, 0.05) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.88) 100%),
        url('/vendas/assets/images/Histogram 2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.precificador-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.precificador-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 80vh;
    position: relative;
}

.precificador-container .section-header {
    text-align: left;
    margin-bottom: 0;
    flex: 50;
    position: relative;
    z-index: 10;
    align-self: flex-start;
    margin-top: -1rem;
}

.precificador-content {
    flex: 50;
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: flex-end;
}

/* Charts Container */
.charts-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
}

.chart-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.chart-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.2);
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

/* Bar Chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bar-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    width: 70px;
    flex-shrink: 0;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: width 2s ease-out;
    animation: fillBar 2s ease-out forwards;
}

.bar-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 35px;
    text-align: right;
    flex-shrink: 0;
}

/* Comparison Chart */
.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background: rgba(74, 144, 226, 0.05);
}

.profit-highlight {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.comparison-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    width: 80px;
    flex-shrink: 0;
}

.comparison-bar {
    flex: 1;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.comparison-fill {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    transition: width 2.5s ease-out;
    animation: fillComparison 2.5s ease-out forwards;
}

.comparison-fill.cost {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.comparison-fill.price {
    background: linear-gradient(90deg, #4a90e2, #6bb6ff);
}

.comparison-fill.profit {
    background: linear-gradient(90deg, #22c55e, #34d399);
}

.comparison-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 60px;
    text-align: right;
    flex-shrink: 0;
}

/* KPI Container */
.kpi-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.kpi-item {
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.kpi-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.kpi-item:nth-child(1) { animation-delay: 0.2s; }
.kpi-item:nth-child(2) { animation-delay: 0.4s; }
.kpi-item:nth-child(3) { animation-delay: 0.6s; }

.kpi-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.kpi-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.kpi-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fillBar {
    from { width: 0%; }
    to { width: var(--target-width, 0%); }
}

@keyframes fillComparison {
    from { width: 0%; }
    to { width: var(--target-width, 0%); }
}

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


/* Calculator Card */
.calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.calculator-header {
    background: var(--gradient-primary);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calculator-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.calculator-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.calculator-body {
    padding: 30px;
}

.calc-input-group {
    margin-bottom: 24px;
}

.calc-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.input-wrapper:focus-within {
    border-color: var(--primary-color);
    background: white;
}

.input-prefix,
.input-suffix {
    padding: 12px;
    color: var(--text-light);
    font-weight: 600;
    background: rgba(74, 144, 226, 0.05);
}

.input-wrapper input {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    outline: none;
}

.input-wrapper input[type="number"]::-webkit-inner-spin-button,
.input-wrapper input[type="number"]::-webkit-outer-spin-button {
    opacity: 0.5;
}

/* Resultado */
.calc-result {
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 24px;
    margin: 30px 0;
    color: white;
}

.result-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.result-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.result-breakdown {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.breakdown-item span:first-child {
    opacity: 0.9;
}

.breakdown-item span:last-child {
    font-weight: 600;
}

.calc-button {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s;
}

.calc-button:hover {
    transform: translateY(-2px);
}

.calc-button svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

/* Features Grid */
.precificador-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 24px;
}

.features-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(74, 144, 226, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(107, 182, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(74, 144, 226, 0.2);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.1);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    opacity: 0.2;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(107, 182, 255, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.05);
}

.feature-icon-wrapper svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper svg {
    color: white;
}

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

.feature-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.2;
    flex: 1;
}

.feature-item:hover .feature-header h4 {
    color: var(--primary-color);
}

.precificador-section .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.precificador-section .feature-header {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.precificador-section .feature-content {
    margin-top: 0.5rem;
    width: 100%;
}

.precificador-section .feature-content p {
    text-align: left;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content p {
    color: var(--text-primary);
}

/* CTA Section */
.precificador-cta-section {
    margin-top: 80px;
    text-align: center;
}

.cta-box-large {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 60px 40px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box-large h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box-large p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .precificador-container {
        flex-direction: column;
        min-height: auto;
        gap: 2rem;
    }

    .precificador-container .section-header {
        flex: 1;
        margin-top: 0;
    }

    .precificador-content {
        flex: 1;
        justify-content: center;
    }

    .precificador-preview {
        width: 100%;
        margin-right: 0;
        margin-top: 0;
    }

    .precificador-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .precificador-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-item {
        padding: 16px;
    }

    .cta-box-large {
        padding: 30px 20px;
    }

    .cta-box-large h3 {
        font-size: 24px;
    }

    .cta-box-large p {
        font-size: 16px;
    }

    .cta-button-large {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Scroll Animations */
.section-content,
.hero-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-content.visible,
.hero-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animações específicas para elementos das seções */
.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-content.visible .section-header {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-content.visible .feature-card {
    opacity: 1;
    transform: translateY(0);
}

/* Delay progressivo para os cards */
.section-content.visible .feature-card:nth-child(1) { transition-delay: 0.1s; }
.section-content.visible .feature-card:nth-child(2) { transition-delay: 0.2s; }
.section-content.visible .feature-card:nth-child(3) { transition-delay: 0.3s; }
.section-content.visible .feature-card:nth-child(4) { transition-delay: 0.4s; }
.section-content.visible .feature-card:nth-child(5) { transition-delay: 0.5s; }
.section-content.visible .feature-card:nth-child(6) { transition-delay: 0.6s; }

/* Animação para imagens */
.dashboard-image,
.bi-preview,
.agenda-image,
.finance-image {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.3s;
}

.section-content.visible .dashboard-image,
.section-content.visible .bi-preview,
.section-content.visible .agenda-image,
.section-content.visible .finance-image {
    opacity: 1;
    transform: scale(1);
}

/* Legal Modal */
.legal-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.legal-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.legal-modal-content {
    background-color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(226, 232, 240, 0.5);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.legal-modal-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.legal-modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.legal-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.legal-modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.legal-modal-body {
    padding: 2rem;
    padding-bottom: 4rem;
    background: #ffffff;
    overflow-y: auto;
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.875rem;
    border-radius: 0 0 16px 16px;
}

.legal-modal-body h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.legal-modal-body h3:first-child {
    margin-top: 0;
}

.legal-modal-body p {
    margin-bottom: 1rem;
}

.legal-modal-body ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-modal-body ul li {
    margin-bottom: 0.5rem;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .legal-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }

    .legal-modal-body {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    max-height: 35px;
    width: auto;
    object-fit: contain;
    margin-left: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-cta-btn {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-item:hover {
    color: white;
}

.contact-item svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.payment-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.stripe-logo {
    height: 20px;
    width: auto;
    margin-left: 8px;
    vertical-align: middle;
}

.footer-security {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.security-icon {
    width: 20px;
    height: 20px;
}

/* ===============================================================
   SEÇÃO FAQ
=============================================================== */
.faq-section {
    background: #f8fafc;
    padding: 80px 0;
}

.faq-section .container {
    display: block !important;
    max-width: 100%;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.faq-section .section-description {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4a90e2;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    width: 14px;
    height: 14px;
    color: white;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA do FAQ */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.faq-cta p {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1rem;
}

.faq-cta .section-cta-btn {
    display: inline-flex;
    margin: 0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-cta {
        margin-top: 40px;
        padding: 30px 20px;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===============================================
   NOVOS ESTILOS PARA GRÁFICOS DE COMPARAÇÃO
   =============================================== */

/* Comparison Charts Container */
.comparison-charts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
}

/* Comparison Header */
.comparison-header {
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

/* Single Chart Container */
.single-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Chart Hero Section */
.chart-hero {
    text-align: center;
    margin-bottom: 1rem;
}

.chart-hero .hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.hero-title .highlight {
    color: #22c55e;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Large Pie Chart Container */
.large-pie-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Large Pie Chart */
.large-pie-chart {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.2);
    margin: 1rem 0;
}

.pie-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.pie-fill {
    stroke-dasharray: 628.3;  /* Circunferência do círculo com raio 100 */
    stroke-dashoffset: 628.3;  /* Começa totalmente oculto */
    transition: none;
}

.large-pie-chart.animated .pie-fill {
    animation: fillPieSmoothSVG 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fillPieSmoothSVG {
    0% {
        stroke-dashoffset: 628.3;  /* Totalmente oculto */
    }
    100% {
        stroke-dashoffset: 125.66;  /* 80% visível (20% oculto) */
    }
}

/* Hover effects */
.large-pie-chart:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.3);
}

/* Large Pie Center */
.pie-center-large {
    position: absolute;
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.time-saved-value {
    font-size: 3rem;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.time-saved-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.time-comparison {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Time Comparison Bars */
.time-comparison-bars {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.time-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1;
}

.time-bar.manual {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.time-bar.precificae {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.time-bar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.time-bar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.time-bar-content {
    flex: 1;
}

.time-bar-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.time-bar-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.time-bar.manual .time-bar-value {
    color: #ef4444;
}

.time-bar.precificae .time-bar-value {
    color: #8b5cf6;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 1rem;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.impact-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.impact-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #8b5cf6;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
}

/* Chart CTA Section */
.chart-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14.4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.button-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
    transform: translateX(3px);
}

.cta-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .chart-hero .hero-title {
        font-size: 1.2rem;
    }

    .large-pie-chart {
        width: 200px;
        height: 200px;
    }

    .pie-center-large {
        width: 120px;
        height: 120px;
    }

    .time-saved-value {
        font-size: 2.5rem;
    }

    .time-comparison-bars {
        flex-direction: column;
        max-width: 300px;
    }

    .time-bar {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
    }

    .time-bar-content {
        text-align: left;
    }

    .chart-cta {
        padding: 1.5rem 1rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Pie Chart Variants */
.pie-chart[data-percentage="75"] {
    background: conic-gradient(
        #8b5cf6 0deg var(--angle, 0deg),
        #e5e7eb var(--angle, 0deg) 360deg
    );
}

.pie-chart[data-percentage="78"] {
    background: conic-gradient(
        #22c55e 0deg var(--angle, 0deg),
        #e5e7eb var(--angle, 0deg) 360deg
    );
}

/* Pie Legend */
.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.legend-item:hover {
    color: var(--text-primary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.time-gain {
    background: #8b5cf6;
}

.legend-dot.time-normal {
    background: #e5e7eb;
}

.legend-dot.gain {
    background: #22c55e;
}

.legend-dot.margin {
    background: #16a34a;
}

/* Chart Gain */
.chart-gain {
    margin-top: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 2.5s;
}

.gain-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Benefits Summary */
.benefits-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-item {
    background: rgba(74, 144, 226, 0.05);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-item:nth-child(1) { animation-delay: 3s; }
.benefit-item:nth-child(2) { animation-delay: 3.2s; }
.benefit-item:nth-child(3) { animation-delay: 3.4s; }

.benefit-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.benefit-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===========================
   SEÇÃO PLANOS
=========================== */
.plans-section {
    background: white;
    color: #333;
    padding: 80px 0;
}

.plans-section .section-header {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px auto;
    max-width: 1200px;
}

.plan-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 30px 25px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #333;
}

.plan-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.plan-card.popular {
    background: linear-gradient(135deg, #6bb6ff 0%, #4a90e2 100%);
    border: none;
    transform: scale(1.05);
    color: white;
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    background: linear-gradient(135deg, #4a90e2 0%, #2c5aa0 100%);
}

.plan-card:nth-child(3) {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

.plan-card:nth-child(3):hover {
    background: linear-gradient(135deg, #15803d 0%, #14532d 100%);
}

.plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #2c5aa0, #1e4a8f);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    min-width: max-content;
}

.plan-badge.enterprise {
    background: linear-gradient(45deg, #14532d, #166534);
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 15px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.plan-card.popular .plan-name,
.plan-card:nth-child(3) .plan-name {
    color: white;
}

.plan-description {
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.plan-card.popular .plan-description,
.plan-card:nth-child(3) .plan-description {
    color: rgba(255, 255, 255, 0.8);
}

.plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 5px;
    color: #333;
}

.plan-card.popular .price-currency,
.plan-card:nth-child(3) .price-currency {
    color: white;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #333;
}

.plan-card.popular .price-value,
.plan-card:nth-child(3) .price-value {
    color: white;
}

.price-period {
    font-size: 1.1rem;
    color: rgba(51, 51, 51, 0.7);
    margin-left: 5px;
}

.plan-card.popular .price-period,
.plan-card:nth-child(3) .price-period {
    color: rgba(255, 255, 255, 0.7);
}

.plan-yearly {
    color: rgba(51, 51, 51, 0.6);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.plan-card.popular .plan-yearly,
.plan-card:nth-child(3) .plan-yearly {
    color: rgba(255, 255, 255, 0.6);
}

.plan-trial {
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-features {
    margin-bottom: 20px;
}

.feature-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.8);
}

.plan-card.popular .feature-line,
.plan-card:nth-child(3) .feature-line {
    color: rgba(255, 255, 255, 0.9);
}

.feature-line.features-highlight {
    padding: 10px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 8px;
    color: rgba(51, 51, 51, 0.8);
    font-size: 0.9rem;
}

.plan-card.popular .feature-item,
.plan-card:nth-child(3) .feature-item {
    color: rgba(255, 255, 255, 0.9);
}

/* Estilos para os ícones Lucide nos planos */
.plan-features .feature-icon,
.plan-features i.feature-icon {
    width: 18px !important;
    height: 18px !important;
    stroke: #6b7280;
    flex-shrink: 0;
    opacity: 0.8;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.plan-features i.feature-icon svg {
    width: 18px;
    height: 18px;
}

.plan-card.popular .plan-features .feature-icon,
.plan-card:nth-child(3) .plan-features .feature-icon {
    stroke: rgba(255, 255, 255, 0.9);
    opacity: 1;
    background: none !important;
}

/* Linha divisória após "Tudo do plano Premium" */
.feature-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
}

/* Estilo para o ícone de plus */
i.plus-icon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    opacity: 0.6;
}

i.plus-icon svg {
    width: 12px;
    height: 12px;
}

/* Estilo para o ícone do WhatsApp */
.plan-features .whatsapp-icon {
    width: 18px !important;
    height: 18px !important;
    fill: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    opacity: 0.8;
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    stroke: none !important;
}

.feature-item.feature-highlight {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 5px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
}

.feature-item.feature-highlight .feature-icon {
    margin-right: 8px;
}

.feature-item.feature-highlight span {
    line-height: 1.4;
    font-size: 0.95rem;
}

.feature-item.feature-highlight strong {
    color: #333;
    font-size: 1rem;
    font-weight: 700;
}

.plan-card:nth-child(3) .feature-item.feature-highlight strong {
    color: #fff;
    font-size: 1.05rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.plan-cta {
    width: 100%;
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.plan-cta.primary {
    background: white;
    color: #4a90e2;
    border: none;
}

.plan-cta.primary:hover {
    background: #4a90e2;
    color: white;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.plan-cta.secondary {
    background: white;
    color: #4a90e2;
    border: none;
}

.plan-cta.secondary:hover {
    background: #4a90e2;
    color: white;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

/* Botão do card Gratuito */
.plan-card:first-child .plan-cta.secondary {
    background: white;
    color: #6b7280;
    border: none;
}

.plan-card:first-child .plan-cta.secondary:hover {
    background: #6b7280;
    color: white;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 114, 128, 0.3);
}

/* Botão do card Empresarial */
.plan-card:nth-child(3) .plan-cta.secondary {
    background: white;
    color: #16a34a;
    border: none;
}

.plan-card:nth-child(3) .plan-cta.secondary:hover {
    background: #16a34a;
    color: white;
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.plans-cta-section {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.plans-cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.plans-cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.plans-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plans-main-cta:hover {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.plans-main-cta svg {
    transition: transform 0.3s ease;
}

.plans-main-cta:hover svg {
    transform: translateX(5px);
}

/* Responsividade para Planos */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 40px 0;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card.popular:hover {
        transform: translateY(-5px);
    }

    .price-value {
        font-size: 2.5rem;
    }

    .plans-section {
        padding: 60px 0;
    }
}

/* Animações simplificadas para Gráficos de Pizza */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries para Telas Grandes (acima de 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        gap: 5rem;
    }

    .nav-container {
        max-width: 1400px;
        padding: 1.25rem 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .section-description {
        font-size: 1.2rem;
        max-width: 700px;
    }

    .hero-image {
        max-width: 650px;
    }

    .dashboard-preview,
    .bi-preview {
        max-width: 750px;
    }

    .agenda-preview,
    .financeiro-preview {
        max-width: 550px;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 1.05rem;
    }
}

/* Media Queries para Telas Ultra Largas (acima de 1920px) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        gap: 6rem;
    }

    .nav-container {
        max-width: 1600px;
        padding: 1.5rem 3rem;
    }

    .hero-section {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-description {
        font-size: 1.3rem;
        max-width: 800px;
    }

    .hero-image {
        max-width: 750px;
    }

    .dashboard-preview,
    .bi-preview {
        max-width: 850px;
    }

    .agenda-preview,
    .financeiro-preview {
        max-width: 650px;
    }

    .feature-card {
        padding: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.35rem;
    }

    .feature-card p {
        font-size: 1.1rem;
    }

    .plans-grid {
        max-width: 1400px;
        margin: 0 auto;
    }

    .plan-card {
        padding: 2.5rem;
    }
}