:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary-color: #2f76e5;
    --secondary-dark: #1a5cc8;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fc;
    --bg-white: #ffffff;
    --bg-dark: #1e293b;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #e74c3c;
    --border-color: #e9ecef;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem;
    line-height: 1.3;
    font-weight: 600;
    color: var(--text-color);
}

p {
    margin: 0 0 1rem;
    color: var(--text-light);
}

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

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

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

button, .btn {
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1rem;
    border: none;
    outline: none;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

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

.btn-light {
    background-color: var(--bg-white);
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background-color: var(--bg-light);
    color: var(--text-color);
}

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

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

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
}

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

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

.nav-mobile {
    display: none;
}

/* Menu móvel */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile-menu .nav-list {
    flex-direction: column;
    gap: 1.5rem;
}

.nav-mobile-menu .cta-buttons {
    flex-direction: column;
    width: 100%;
}

/* Hero Section */
.hero {
    padding: calc(var(--header-height) + 5rem) 0 5rem;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    position: relative;
    overflow: hidden;
}

    .hero .container {
        display: flex;
        align-items: center;
        gap: 4rem;
        position: relative;
        z-index: 5; /* Garantir que esteja acima da onda */
    }

    .hero-content {
        flex: 1;
        position: relative;
    }
    
    @media (max-width: 768px) {
        .hero .container {
            display: block;
        }
    }.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10; /* Garantir que esteja acima de outros elementos */
}

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

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
}

.feature-badge i {
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.floating-badge i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.badge-1 {
    top: 10%;
    left: -20px;
    color: #e74c3c;
}

.badge-2 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
}

.badge-3 {
    top: 10%;
    right: -20px;
    color: var(--success-color);
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    z-index: -1; /* Colocando atrás do conteúdo */
    pointer-events: none; /* Garante que não interfira nos cliques */
}

/* Banks Section */
.banks {
    padding: 4rem 0;
    background-color: var(--bg-white);
}

.banks-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.bank-logo {
    text-align: center;
    transition: var(--transition);
}

.bank-img {
    height: 60px;
    width: auto;
    margin: 0 auto 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.bank-logo:hover .bank-img {
    filter: grayscale(0%);
    opacity: 1;
}

.bank-logo p {
    font-size: 0.9rem;
    font-weight: 500;
}

.coming-soon span {
    background-color: var(--warning-color);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.banks-info {
    text-align: center;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

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

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

.feature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.steps {
    margin-bottom: 4rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.step:last-child {
    margin-bottom: 0;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 50px;
    background-color: var(--border-color);
    bottom: -50px;
    left: 30px;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-image {
    flex: 1;
    max-width: 400px;
}

.step-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.video-container h3 {
    margin-bottom: 1.5rem;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    padding: 0.25rem 0.5rem;
    background-color: var(--success-color);
    color: white;
    font-size: 0.7rem;
    border-radius: 4px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features ul {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-features li i {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.pricing-features li i.fa-check {
    color: var(--success-color);
}

.pricing-features li i.fa-times {
    color: var(--danger-color);
}

.feature-disabled {
    opacity: 0.6;
}

.pricing-footer {
    margin-top: 2rem;
}

.enterprise-plan {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.enterprise-content {
    flex: 2;
}

.enterprise-content h3 {
    margin-bottom: 1rem;
}

.enterprise-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.enterprise-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.enterprise-content li i {
    color: var(--success-color);
}

.enterprise-cta {
    flex: 1;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    position: relative;
    font-style: italic;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.testimonial-logos h4 {
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.logo-grid img {
    height: 30px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
    transition: var(--transition);
}

.faq-toggle i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: white;
}

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

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

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

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
}

.contact-details small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.contact-form {
    flex: 1;
}

.contact-form h3 {
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    background-color: var(--bg-dark);
    color: white;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.footer-badges .badge {
    background-color: rgba(13, 110, 253, 0.2);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.footer-links-column h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links-column ul li a:hover {
    color: var(--primary-color);
}

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

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

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

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

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

.footer-middle {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

.footer-middle h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.bank-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.bank-keywords span {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.payment-methods img {
    height: 30px;
}

/* Back to top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
    }
    
    .hero-image {
        margin-top: 40px;
        min-height: 500px;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .enterprise-plan {
        flex-direction: column;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-image {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .cta-buttons {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        width: 30px;
        height: 20px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        justify-content: space-between;
        padding: 0;
    }
    
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-color);
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .enterprise-content ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .banks-logos {
        gap: 1.5rem;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

/* Banks Section */
.banks {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bank-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

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

.bank-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.bank-card p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.bank-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bank-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.bank-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .banks-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

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

/* Conversion Flow Styles in Hero Section */
.conversion-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    position: relative;
}

.conversion-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.document-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.document-icon i {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.document-icon .fa-file-pdf {
    color: #e74c3c;
}

.document-icon .fa-file-csv {
    color: #27ae60;
}

.document-icon .fa-file-alt {
    color: #f39c12;
}

.document-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.document-preview {
    width: 180px;
    height: 230px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.document-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 40px;
    font-weight: 700;
    opacity: 0.1;
    color: #333;
}

/* PDF Document */
.pdf-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pdf-header {
    height: 30px;
    background-color: #f4f4f4;
    margin-bottom: 10px;
}

.pdf-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pdf-line {
    height: 8px;
    background-color: #eaeaea;
    border-radius: 4px;
}

.pdf-table {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pdf-row {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

/* CSV Document */
.csv-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.csv-row {
    height: 8px;
    background-color: #f1f1f1;
    border-radius: 4px;
}

.csv-row.header {
    background-color: #d9d9d9;
}

/* OFX Document */
.ofx-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 10px;
}

.ofx-tag {
    height: 8px;
    background-color: #f1f1f1;
    width: 80%;
    border-radius: 4px;
}

.ofx-tag.nested {
    margin-left: 20px;
    width: 60%;
}

/* Conversion Arrow */
.conversion-arrow {
    margin: 0 30px;
    font-size: 2rem;
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.conversion-results {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

/* Responsive adjustments */
@media (max-width: 991px) {
    .conversion-flow {
        flex-direction: column;
    }
    
    .conversion-arrow {
        margin: 20px 0;
        transform: rotate(90deg);
    }
    
    .conversion-results {
        flex-direction: row;
        gap: 20px;
    }
    
    .document-preview {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .conversion-results {
        flex-direction: column;
        gap: 20px;
    }
    
    .document-preview {
        width: 180px;
        height: 230px;
    }
}
