/* Sequence SaaS - External Stylesheet */

:root {
    /* Color variables */
    --sequence-primary: #333381;
    --sequence-secondary: #9c00bc;
    --sequence-light: #ffffff;
    --sequence-light-hover: #f8f9fa;
    --sequence-background: #f0f2f5;
    
    /* Component variables */
    --topbar-height: 70px;
    --topbar-margin: 15px;
    --border-radius: 10px;
    --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Typography variables */
    --font-primary: 'Poppins', sans-serif;
    --transition-default: all 0.3s ease;
}

/* Base styles */
body {
    margin: 0;
    padding: var(--topbar-margin);
    font-family: var(--font-primary);
    background-color: var(--sequence-background);
    min-height: 100vh;
}

/* Container styles */
.content-wrapper {
    margin-top: calc(var(--topbar-height) + var(--topbar-margin) * 2);
    min-height: calc(100vh - var(--topbar-height) - var(--topbar-margin) * 3);
    padding: 0 15px;
}

/* Top Navigation Bar */
.topbar {
    height: var(--topbar-height);
    background-color: var(--sequence-primary);
    position: fixed;
    top: var(--topbar-margin);
    right: var(--topbar-margin);
    left: var(--topbar-margin);
    z-index: 999;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
}

/* Logo styles */
.logo-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sequence-light);
    letter-spacing: 1px;
}

.logo-sm {
    display: none;
}

/* Navigation menu */
.topbar-menu {
    display: flex;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0 20px;
    font-size: 0.95rem;
    font-weight: 500;
    height: 100%;
    transition: var(--transition-default);
    position: relative;
}

.nav-link:hover {
    color: var(--sequence-light) !important;
}

.nav-link.active {
    color: var(--sequence-light) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--sequence-light);
    transition: var(--transition-default);
    transform: translateX(-50%);
}

.nav-link:hover:after, 
.nav-link.active:after {
    width: 80%;
}

/* Topbar right actions */
.topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-default);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--sequence-light);
    color: var(--sequence-light);
}

.btn-light {
    background-color: var(--sequence-light);
    color: var(--sequence-secondary);
    font-weight: 500;
    transition: var(--transition-default);
}

.btn-light:hover {
    background-color: var(--sequence-light-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Mobile menu button */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--sequence-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: calc(var(--topbar-height) + var(--topbar-margin) * 2);
    left: var(--topbar-margin);
    width: 250px;
    height: calc(100vh - var(--topbar-height) - var(--topbar-margin) * 3);
    background-color: var(--sequence-primary);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transform: translateX(-110%);
    transition: var(--transition-default);
    z-index: 1980;
    overflow-y: auto;
    padding: 1rem 0;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-item {
    padding: 0.5rem 1.5rem;
}

.sidebar-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: var(--transition-default);
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: var(--sequence-light);
}

.sidebar-nav-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .topbar-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .logo-lg {
        display: none;
    }
    
    .logo-sm {
        display: block;
        font-size: 1.5rem;
    }
    
    .topbar-right .btn span {
        display: none;
    }
    
    .topbar-right .btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .topbar-right .btn i {
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    :root {
        --topbar-margin: 10px;
    }
    
    .topbar-right {
        gap: 5px;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Additional utility classes */
.no-scroll {
    overflow: hidden;
}

.divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 1.5rem;
}



:root {
    /* Color variables */
    --sequence-primary: #333381;
    --sequence-secondary: #9c00bc;
    --sequence-gradient-start: #9c00bc;
    --sequence-gradient-end: #0055ff;
    --sequence-light: #ffffff;
    --sequence-light-hover: #f8f9fa;
    --sequence-background: #f0f2f5;
    --sequence-dark: #212529;
    
    /* Component variables */
    --topbar-height: 70px;
    --topbar-margin: 15px;
    --border-radius: 10px;
    --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Typography variables */
    --font-primary: 'Poppins', sans-serif;
    --transition-default: all 0.3s ease;
}

/* Base styles */
body {
    margin: 0;
    padding: 0; /* Remove o padding do body */
    font-family: var(--font-primary);
    background-color: var(--sequence-background);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}



/* Container styles */
.content-wrapper {
    margin-top: var(--topbar-height);
    min-height: calc(100vh - var(--topbar-height));
    padding: calc(var(--topbar-margin) + 1rem) 15px 1rem 15px;
}

/* Top Navigation Bar */
.topbar {
    padding: 15px;
    background-color: var(--sequence-primary);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    box-shadow: var(--shadow-md);
    border-radius: 0; /* Remove border-radius */
}

/* Logo styles */
.logo-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sequence-light);
    letter-spacing: 1px;
}

.logo-sm {
    display: none;
}

/* Navigation menu */
.topbar-menu {
    display: flex;
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 0 20px;
    font-size: 0.95rem;
    font-weight: 500;
    height: 100%;
    transition: var(--transition-default);
    position: relative;
}

.nav-link:hover {
    color: var(--sequence-light) !important;
}

.nav-link.active {
    color: var(--sequence-light) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--sequence-light);
    transition: var(--transition-default);
    transform: translateX(-50%);
}

.nav-link:hover:after, 
.nav-link.active:after {
    width: 80%;
}

/* Topbar right actions */
.topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-default);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--sequence-light);
    color: var(--sequence-light);
}

.btn-light {
    background-color: var(--sequence-light);
    color: var(--sequence-secondary);
    font-weight: 500;
    transition: var(--transition-default);
}

.btn-light:hover {
    background-color: var(--sequence-light-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Mobile menu button */
.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--sequence-light);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 250px;
    height: calc(100vh - var(--topbar-height));
    background-color: var(--sequence-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0; /* Arredonda apenas os cantos direitos */
    box-shadow: var(--shadow-md);
    transform: translateX(-100%);
    transition: var(--transition-default);
    z-index: 1980;
    overflow-y: auto;
    padding: 1rem 0;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-item {
    padding: 0.5rem 1.5rem;
}

.sidebar-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    transition: var(--transition-default);
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    color: var(--sequence-light);
}

.sidebar-nav-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    background-color: var(--sequence-dark);
    color: var(--sequence-light);
    padding: 15rem 0;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, var(--sequence-gradient-start), var(--sequence-gradient-end));
    border-radius: 50% 0 0 60%;
    opacity: 0.8;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .topbar-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .logo-lg {
        display: none;
    }
    
    .logo-sm {
        display: block;
        font-size: 1.5rem;
    }
    
    .topbar-right .btn span {
        display: none;
    }
    
    .topbar-right .btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .topbar-right .btn i {
        margin-right: 0;
    }

    .hero-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .topbar-right {
        gap: 5px;
    }

    .hero-shape {
        width: 70%;
    }
}


    /* Base card styling */
    .feature-card {
        border: none;
        background-color: #f9f9fc;
        border-radius: 10px;
        transition: all 0.3s ease;
        min-height: 280px;
        padding: 6px;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        background-color: #ffffff;
    }
    
    /* Card body styling */
    .card-body {
        border-radius: 6px;
        background-color: transparent;
    }
    
    /* Typography */
    .card-title {
        font-weight: 600;
        color: #333;
        font-size: 18px;
        letter-spacing: -0.3px;
    }
    
    .card-text {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Feature icon */
    .feature-icon {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(96, 82, 244, 0.1) 0%, rgba(153, 57, 248, 0.1) 100%);
        margin-bottom: 18px;
    }
    
    .feature-icon i {
        font-size: 22px;
        color: #6052f4;
    }
    
    /* Feature list */
    .feature-list {
        list-style: none;
        padding-left: 0;
        margin-bottom: 20px;
    }
    
    .feature-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 8px;
        font-size: 14px;
        color: #ffffff;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 6px;
        padding: 6px 10px;
        backdrop-filter: blur(5px);
    }
    
    .feature-list li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        height: 8px;
        width: 8px;
        border-radius: 50%;
        background-color: #6052f4;
    }
    
    /* Feature link */
    .feature-link {
        display: inline-flex;
        align-items: center;
        color: #6052f4;
        font-weight: 500;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .feature-link span {
        margin-right: 6px;
    }
    
    .feature-link i {
        font-size: 14px;
        transition: transform 0.2s ease;
    }
    
    .feature-link:hover {
        color: #5045d5;
    }
    
    .feature-link:hover i {
        transform: translateX(3px);
    }
    
    /* Hover styles for entire card */
    .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, rgba(96, 82, 244, 0.15) 0%, rgba(153, 57, 248, 0.15) 100%);
    }
    
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
        .col-lg {
            width: 100%;
            margin-bottom: 1rem;
        }
        
        .feature-card {
            min-height: auto;
        }
    }



    .case-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }
    
    .case-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .company-name {
        font-weight: 700;
        font-size: 1.8rem;
        background: linear-gradient(90deg, #fff, #e0e0e0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .before-panel, .after-panel {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .before-panel:hover, .after-panel:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    
    .testimonial-container {
        border-left: 4px solid #ffc800;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .badge {
        font-weight: 500;
        padding: 0.4rem 0.8rem;
    }
    
    /* Animação do círculo de resultado */
    .result-circle {
        animation: pulse 2s infinite ease-in-out;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(255, 200, 0, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 200, 0, 0); }
    }
    
    /* Responsividade */
    @media (max-width: 767px) {
        .company-name {
            font-size: 1.5rem;
        }
        
        .result-circle {
            width: 60px !important;
            height: 60px !important;
        }
        
        .percentage {
            font-size: 1.4rem !important;
        }
    }


    .pricing-card {
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .plan-title {
        font-weight: 600;
        font-size: 1.3rem;
        margin-bottom: 0;
        color: #333;
    }
    
    .feature-list {
        font-size: 0.95rem;
        color: #555;
    }
    
    .btn-primary {
        background-color: #4734fe;
        border-color: #4734fe;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: #3523e9;
        border-color: #3523e9;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(71, 52, 254, 0.3);
    }


    .bg-primary-light {
        background-color: rgba(73, 97, 247, 0.1);
    }
    
    .text-primary {
        color: #4863f7 !important;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #4863f7 0%, #9939f8 100%);
        border: none;
        box-shadow: 0 8px 15px rgba(73, 97, 247, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(73, 97, 247, 0.4);
    }
    
    .help-redirect-section {
        position: relative;
    }
    
    .help-redirect-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/api/placeholder/1200/400');
        background-size: cover;
        background-position: center;
        opacity: 0.04;
        z-index: 0;
    }


        .infographic-bg {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .central-image-wrapper {
            transition: transform 0.3s ease;
        }
        
        .central-image-wrapper:hover {
            transform: translateY(-5px);
        }
        
        .info-point {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .info-point:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(73, 97, 247, 0.2) !important;
        }
        
        .point-number {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .icon-bg {
            pointer-events: none;
        }
        
        .title-container {
            transition: transform 0.3s ease;
        }
        
        .title-container:hover {
            transform: translateY(-3px);
        }
        
        /* Animação para os pontos aparecerem */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .info-point {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .info-point:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .info-point:nth-child(2) {
            animation-delay: 0.3s;
        }
        
        .info-point:nth-child(3) {
            animation-delay: 0.5s;
        }
        
        .info-point:nth-child(4) {
            animation-delay: 0.7s;
        }


    .knowledge-center-section {
        background-color: #fafafa;
    }
    
    .filter-btn {
        background-color: white;
        border: 1px solid #dee2e6;
        color: #495057;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .filter-btn:hover, .filter-btn.active {
        background: linear-gradient(90deg, #4863f7, #9939f8);
        color: white;
        border-color: transparent;
    }
    
    .category-title {
        font-weight: 600;
        font-size: 1.5rem;
    }
    
    .category-description {
        color: #6c757d;
        margin-bottom: 1rem;
    }
    
    .section-badge {
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    }


    .cta-container {
        box-shadow: 0 15px 35px rgba(73, 97, 247, 0.3);
        overflow: hidden;
    }
    
    .cta-title {
        font-weight: 700;
        font-size: 2.2rem;
    }
    
    .cta-buttons .btn {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: #4863f7;
        border: none;
    }
    
    .cta-buttons .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Animação de pulso nas formas decorativas */
    @keyframes pulse {
        0% { transform: translate(-30%, -30%) scale(1); }
        50% { transform: translate(-30%, -30%) scale(1.05); }
        100% { transform: translate(-30%, -30%) scale(1); }
    }
    
    @keyframes pulse2 {
        0% { transform: translate(30%, 30%) scale(1); }
        50% { transform: translate(30%, 30%) scale(1.05); }
        100% { transform: translate(30%, 30%) scale(1); }
    }
    
    .cta-shape {
        animation: pulse2 8s infinite ease-in-out;
    }
    
    .cta-shape-2 {
        animation: pulse 8s infinite ease-in-out;
    }


    /* Footer */
    .footer {
        padding: 6rem 0;
        background-color: var(--sequence-dark);
        color: rgba(255, 255, 255, 0.7);
        border-radius: var(--border-radius);
        margin-top: 2rem;
    }

    .footer-title {
        color: white;
        font-weight: 600;
        margin-bottom: 1.2rem;
    }

    .footer-links {
        list-style: none;
        padding-left: 0;
    }

    .footer-link {
        margin-bottom: 0.8rem;
    }

    .footer-link a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition-default);
    }

    .footer-link a:hover {
        color: white;
        margin-left: 5px;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: var(--transition-default);
    }

    .social-link:hover {
        background: var(--sequence-secondary);
        transform: translateY(-3px);
    }
    
    /* Animation classes */
    .fade-in {
        animation: fadeIn 0.5s ease forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }



    .bg-primary-light {
        background-color: rgba(73, 97, 247, 0.1);
    }
    
    .text-primary {
        color: #4863f7 !important;
    }
    
    .demo-container {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .demo-container:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .demo-cta {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }
    
    .demo-cta:hover {
        transform: translateY(-5px);
    }
    
    .btn-primary-modern {
        background-color: #4863f7;
        color: white;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }
    
    .btn-primary-modern:hover {
        background-color: #3651e3;
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(72, 99, 247, 0.3);
    }

    .btn-outline-primary {
        --bs-btn-color: #ffffff;
        --bs-btn-border-color: #ffffff;
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #0d6efd;
        --bs-btn-hover-border-color: #0d6efd;
        --bs-btn-focus-shadow-rgb: 13, 110, 253;
        --bs-btn-active-color: #fff;
        --bs-btn-active-bg: #0d6efd;
        --bs-btn-active-border-color: #0d6efd;
        --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        --bs-btn-disabled-color: #0d6efd;
        --bs-btn-disabled-bg: transparent;
        --bs-btn-disabled-border-color: #0d6efd;
        --bs-gradient: none;
      }
      
      /* Estilos para a Central Contábil do Futuro */

/* Estilos básicos e cores principais */
:root {
    --primary-color: #4863f7;
    --secondary-color: #9939f8;
    --gradient-primary: linear-gradient(90deg, #4863f7, #9939f8);
    --gradient-angle: linear-gradient(135deg, #4863f7 0%, #9939f8 100%);
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-muted: #6c757d;
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 10px;
    --box-shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
    --transition-default: all 0.3s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Utilidades */
.bg-primary-light {
    background-color: rgba(73, 97, 247, 0.1);
}

.text-primary {
    color: #4863f7 !important;
}

/* Header da página */
.page-header {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.page-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Badges e etiquetas */
.badge {
    font-weight: 500;
    padding: 0.4rem 0.8rem;
}

.badge.rounded-pill {
    border-radius: 50rem;
}

/* Cards de conteúdo */
.content-card {
    transition: var(--transition-default);
    box-shadow: var(--box-shadow-sm);
    background-color: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    height: 100%;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-lg);
}

.content-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.content-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Filtros de categoria */
.category-filter {
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: white;
    border: 1px solid #dee2e6;
    color: #495057;
    font-weight: 500;
    transition: var(--transition-default);
    cursor: pointer;
}

.filter-btn:hover, 
.filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Badges e elementos visuais */
.category-badge {
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 1;
}

.play-btn {
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.content-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.content-tags .badge {
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #f8f9fa;
    color: #495057;
}

/* Links de ação */
.read-more, 
.watch-btn {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.read-more:hover, 
.watch-btn:hover {
    text-decoration: underline;
}

.download-btn {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(73, 97, 247, 0.2);
}

/* Paginação */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 3px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
}

/* Newsletter */
.newsletter-box {
    background-color: white;
    box-shadow: var(--box-shadow-md);
    padding: 2rem;
    border-radius: var(--border-radius-xl);
    margin-top: 3rem;
}

.newsletter-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.5rem;
}

.newsletter-description {
    color: var(--text-muted);
}

/* Form elements */
.form-control-modern {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control-modern:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(72, 99, 247, 0.15);
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    padding: 10px 16px;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary-modern {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary-modern:hover {
    box-shadow: 0 8px 15px rgba(73, 97, 247, 0.3);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .filter-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .newsletter-form .btn-modern {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .content-card {
        margin-bottom: 1.5rem;
    }
}

/* Estilos para o componente modal-modern */
.modal-modern {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: none;
    overflow: hidden;
}

.modal-body-modern {
    padding: 20px;
    background-color: #ffffff;
}

/* Animação para os cards aparecerem */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-item {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.kanban-board {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f8f9fa;
}

.kanban-board::-webkit-scrollbar {
    height: 6px;
}

.kanban-board::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.kanban-board::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 20px;
}

.kanban-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: grab;
}

.kanban-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

.kanban-card.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.dropzone.drop-target {
    background-color: rgba(73, 97, 247, 0.05);
    border: 2px dashed rgba(73, 97, 247, 0.3);
    border-radius: 6px;
}

/* Modo Escuro para o Sequence */
:root {
    /* Cores existentes permanecem para o tema claro */
}

body.dark-theme {
    /* Variáveis de cor para tema escuro */
    --sequence-primary: #4240a0;
    --sequence-secondary: #b239d5;
    --sequence-light: #e0e0e0;
    --sequence-light-hover: #333333;
    --sequence-background: #121212;
    --sequence-dark: #f0f0f0;
    --border-color: #333333;
}

/* Botão de troca de tema */
.btn-theme-toggle {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--sequence-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Ajustes específicos para o modo escuro */
body.dark-theme {
    background-color: var(--sequence-background);
    color: var(--sequence-light);
}

/* Hero Section no modo escuro */
body.dark-theme .hero-section {
    background-color: #0a0a0a;
}

/* Cards de recursos no modo escuro */
body.dark-theme .feature-card {
    background-color: #1e1e1e;
}

body.dark-theme .feature-card:hover {
    background-color: #252525;
}

body.dark-theme .card-title {
    color: #e0e0e0;
}

body.dark-theme .card-text {
    color: #b0b0b0;
}

body.dark-theme .feature-list li {
    color: #c0c0c0;
}

/* Seções com fundo claro no modo escuro */
body.dark-theme .bg-light {
    background-color: #1a1a1a !important;
}

/* Cards de preços no modo escuro */
body.dark-theme .pricing-card {
    background-color: #1e1e1e;
    border-color: #333;
}

body.dark-theme .card-header {
    background-color: #252525;
}

/* FAQ no modo escuro */
body.dark-theme .accordion-item {
    background-color: #1e1e1e;
    border-color: #333;
}

body.dark-theme .accordion-button {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

body.dark-theme .accordion-button:not(.collapsed) {
    background-color: #252525;
    color: #e0e0e0;
}

/* Formulários no modo escuro */
body.dark-theme .form-control,
body.dark-theme .form-select {
    background-color: #252525;
    border-color: #444;
    color: #e0e0e0;
}

/* Footer no modo escuro */
body.dark-theme .footer {
    background-color: #0a0a0a;
}

/* Modal no modo escuro */
body.dark-theme .modal-content {
    background-color: #1e1e1e;
    border-color: #333;
}

body.dark-theme .modal-header {
    border-bottom-color: #333;
}

body.dark-theme .modal-footer {
    border-top-color: #333;
}

/* Botões no modo escuro */
body.dark-theme .btn-light {
    background-color: #333;
    color: #e0e0e0;
    border-color: #444;
}

body.dark-theme .btn-outline-primary {
    border-color: var(--sequence-primary);
    color: var(--sequence-primary);
}

.pricing-section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    text-align: center;
}



/* Grade para os cartões */
:root {
    /* Color variables */
    --sequence-primary: #333381;
    --sequence-secondary: #9c00bc;
    --sequence-gradient-start: #9c00bc;
    --sequence-gradient-end: #0055ff;
    --sequence-light: #ffffff;
    --sequence-light-hover: #f8f9fa;
    --sequence-background: #f0f2f5;
    --sequence-dark: #212529;
    --border-radius: 10px;
    --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --font-primary: 'Poppins', sans-serif;
    --transition-default: all 0.3s ease;
}

/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary), Arial, sans-serif;
}

body {
    background-color: var(--sequence-background);
}

.pricing-section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    text-align: center;
}

/* Grade para os cartões */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
}

/* Estilos do cartão animado */
.e-card {
    background: transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    width: 240px;
    height: 330px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 0 auto;
}

.wave {
    position: absolute;
    width: 540px;
    height: 700px;
    opacity: 0.6;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg, var(--sequence-secondary), var(--sequence-primary) 60%, #00ddeb);
}

.icon {
    width: 3em;
    margin-top: -1em;
    padding-bottom: 1em;
}

.infotop {
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 2em;
    left: 0;
    right: 0;
    color: rgb(255, 255, 255);
    font-weight: 600;
    padding: 0 15px;
}

.name {
    font-size: 14px;
    font-weight: 300;
    position: relative;
    top: 2em;
}

.wave:nth-child(2),
.wave:nth-child(3) {
    top: 210px;
}

.wave {
    border-radius: 40%;
    animation: wave 55s infinite linear;
}

.wave:nth-child(2) {
    animation-duration: 50s;
}

.wave:nth-child(3) {
    animation-duration: 45s;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Estilos das listas de recursos */
.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Botão CTA */
.cta-button {
    display: inline-block;
    margin-top: 40px;
    background-color: #5b42f3;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #4a35d9;
}

/* Variações de cores para cada plano */
.basic .wave {
    background: linear-gradient(744deg, var(--sequence-secondary), var(--sequence-primary) 60%, var(--sequence-gradient-end));
}

.intermediate .wave {
    background: linear-gradient(744deg, var(--sequence-primary), var(--sequence-gradient-end) 60%, var(--sequence-secondary));
}

.advanced .wave {
    background: linear-gradient(744deg, var(--sequence-gradient-end), var(--sequence-secondary) 60%, var(--sequence-primary));
}

/* Responsividade */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .e-card {
        margin-bottom: 40px;
    }
}

:root {
    --sequence-primary: #333381;
    --sequence-secondary: #9c00bc;
    /* Adicionando versões RGB para usar com transparência */
    --sequence-primary-rgb: 51, 51, 129;
    --sequence-secondary-rgb: 156, 0, 188;
    --sequence-light: #ffffff;
}

/* Base card styling */
.feature-card {
    border: none;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Card body styling */
.card-body {
    border-radius: 6px;
    background-color: transparent;
}

/* Typography */
.card-title {
    font-weight: 600;
    color: #333;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Feature icon */
.feature-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 18px;
}

.feature-icon i {
    font-size: 22px;
}

/* Feature list */
.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--sequence-primary);
}

/* Feature link */
.feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--sequence-primary);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.feature-link span {
    margin-right: 6px;
}

.feature-link i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.feature-link:hover {
    color: var(--sequence-secondary);
}

.feature-link:hover i {
    transform: translateX(3px);
}

/* Section title styling */
.section-title {
    font-weight: 700;
    font-size: 32px;

}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .feature-card {
        min-height: auto;
        margin-bottom: 20px;
    }
}

:root {
    /* Color variables */
    --sequence-primary: #333381;
    --sequence-secondary: #9c00bc;
    --sequence-light: #ffffff;
    --sequence-light-hover: #f8f9fa;
    --sequence-background: #f0f2f5;
    --sequence-dark: #212529;
    
    /* Component variables */
    --border-radius: 10px;
    --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Typography variables */
    --font-primary: 'Poppins', sans-serif;
    --transition-default: all 0.3s ease;
}

/* Section styling */
.pricing-section {
    padding: 80px 0;
    background-color: var(--sequence-background);
}

.section-title {
    font-weight: 700;
    font-size: 32px;
    color: #333;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing card container */
.pricing-card-container {
    position: relative;
    margin-bottom: 20px;
    transition: var(--transition-default);
}

.pricing-card-container:hover {
    transform: translateY(-10px);
}

/* Popular tag */
.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--sequence-secondary), var(--sequence-primary));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Plan badge */
.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

/* Animation card */
.e-card {
    background: transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 0 auto;
}

.wave {
    position: absolute;
    width: 540px;
    height: 700px;
    opacity: 0.6;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg, var(--sequence-secondary), var(--sequence-primary) 60%, #00ddeb);
    border-radius: 40%;
    animation: wave 55s infinite linear;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Infotop content */
.infotop {
    text-align: center;
    position: absolute;
    top: 2.5em;
    left: 0;
    right: 0;
    color: var(--sequence-light);
    font-weight: 600;
    padding: 0 20px;
}

.infotop h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.name {
    font-weight: 300;
    position: relative;
    top: 1.5em;
}

/* Features block */
.features-block {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 15px;
    backdrop-filter: blur(5px);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Users info */
.users-info {
    text-align: center;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 10px;
    backdrop-filter: blur(5px);
    width: fit-content;
    margin: 20px auto 0;
}

/* Pricing action */
.pricing-action {
    text-align: center;
    padding: 15px 0;
}

.btn-outline, .btn-primary {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-default);
}

.btn-outline {
    border: 2px solid var(--sequence-primary);
    color: var(--sequence-primary);
    background-color: white;
}

.btn-outline:hover {
    background-color: var(--sequence-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--sequence-primary) 0%, var(--sequence-secondary) 100%);
    color: white;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Variations for each plan */
.basic .wave {
    background: linear-gradient(744deg, var(--sequence-secondary), var(--sequence-primary) 60%, #00ddeb);
}

.intermediate .wave {
    background: linear-gradient(744deg, var(--sequence-primary), #00ddeb 60%, var(--sequence-secondary));
}

.advanced .wave {
    background: linear-gradient(744deg, #00ddeb, var(--sequence-secondary) 60%, var(--sequence-primary));
}

/* Custom plan section */
.custom-plan-section {
    padding: 30px;
    margin-top: 40px;
    border-radius: var(--border-radius);
    border: 1px dashed rgba(0, 0, 0, 0.1);
}

.custom-plan-section h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--sequence-primary) 0%, var(--sequence-secondary) 100%);
    color: var(--sequence-light);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition-default);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--sequence-secondary) 0%, var(--sequence-primary) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--sequence-light);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .pricing-card-container {
        max-width: 350px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 767.98px) {
    .e-card {
        height: 320px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
}
