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

/* Prevenção de flash não estilizado e otimização de carregamento */
html {
    background-color: #1a1a1a;
    overflow-x: hidden;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #1a1a1a;
    /* Transição suave do carregamento */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

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

/* Header Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 0;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
    height: 50px;
}

/* Navbar container for centering content */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

/* Navbar states */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Ensure logo is visible when scrolled */
.navbar.scrolled .logo {
    opacity: 1 !important;
    visibility: visible !important;
}

.navbar.scrolled .logo .brand {
    background: linear-gradient(135deg, #008034 0%, #A5C911 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Navbar for non-homepage (always white) */
.navbar.static {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

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

.logo img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 8px rgba(0,128,52,0.3));
    transition: all 0.3s ease;
}

.brand {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #008034 0%, #A5C911 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    position: relative;
    transition: all 0.3s ease;
}

/* White text version for transparent navbar */
.navbar:not(.scrolled):not(.static) .brand {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #008034, #A5C911);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover .brand::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a:hover {
    color: #008034;
    background: rgba(0,128,52,0.1);
    transform: translateY(-1px);
}

/* White text version for transparent navbar */
.navbar:not(.scrolled):not(.static) .nav-links a {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.navbar:not(.scrolled):not(.static) .nav-links a:hover {
    color: #A5C911;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: rgba(0,128,52,0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 22px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    opacity: 1;
}

/* White hamburger lines for transparent navbar */
.navbar:not(.scrolled):not(.static) .hamburger-line {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    opacity: 1;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 25px rgba(0,0,0,0.15);
    overflow-y: auto;
    border-left: 3px solid #A5C911;
    z-index: 1000;
}

.mobile-nav-overlay.active .mobile-nav {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef;
    background: rgba(0,128,52,0.05);
    padding: 1rem;
    border-radius: 10px;
    margin: -1rem -1rem 2rem -1rem;
}

.mobile-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #008034;
    margin-left: 0.5rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.mobile-nav-close:hover {
    background: rgba(0,128,52,0.1);
    color: #008034;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.4s ease forwards;
}

.mobile-nav-links li:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(0,128,52,0.1), rgba(165,201,17,0.1));
    color: #008034;
    border-left-color: #A5C911;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0,128,52,0.15);
}

.mobile-nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.mobile-nav-link:hover:before {
    left: 100%;
}

/* Mobile menu item icons */
.mobile-nav-link:after {
    content: '\2192';
    margin-left: auto;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover:after {
    opacity: 1;
    transform: translateX(0);
}

.desktop-nav {
    display: flex;
}

/* Mobile menu hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
}

/* Ensure mobile menu works on all screen sizes when displayed */
@media screen and (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
        cursor: pointer;
    }
    
    .mobile-nav-overlay {
        display: block !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
        url('../images/mockpus/imgcp.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 20px 100px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Preload otimization for instant loading */
    will-change: background-position;
}
}


/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(165,201,17,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(165,201,17,0.2);
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation: floatUpDown 8s ease-in-out infinite;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation: floatUpDown 6s ease-in-out infinite reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 8%;
    animation: floatUpDown 10s ease-in-out infinite;
}

.floating-shape {
    position: absolute;
    background: rgba(165,201,17,0.08);
    border: 1px solid rgba(165,201,17,0.15);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 8%;
    border-radius: 25% 75% 50% 25%;
    animation: rotateFloat 15s linear infinite;
}

.shape-2 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 25%;
    border-radius: 60% 20% 60% 20%;
    animation: rotateFloat 12s linear infinite reverse;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes rotateFloat {
    0% {
        transform: rotate(0deg) translateY(0px);
    }
    25% {
        transform: rotate(90deg) translateY(-15px);
    }
    50% {
        transform: rotate(180deg) translateY(0px);
    }
    75% {
        transform: rotate(270deg) translateY(-10px);
    }
    100% {
        transform: rotate(360deg) translateY(0px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 2rem;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    margin: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 
        0 4px 12px rgba(0,0,0,0.7),
        0 2px 6px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-highlight {
    color: #A5C911;
    font-weight: 600;
    display: block;
    font-size: 2.8rem;
    margin-top: 0.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 
        0 2px 8px rgba(0,0,0,0.5),
        0 1px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
    max-width: 500px;
    font-weight: 400;
}

.hero-slogan {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #A5C911;
    font-weight: 600;
    text-shadow: 
        0 2px 6px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* New Open Account Button */
.btn-open-account {
    background: #008034;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: 0 4px 12px rgba(0,128,52,0.2);
    position: relative;
    overflow: hidden;
    min-width: auto;
    justify-content: center;
    animation: none;
}

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

.btn-open-account:hover::before {
    left: 100%;
}

.btn-open-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,128,52,0.3);
    background: #006b2a;
}

.btn-open-account svg {
    transition: transform 0.3s ease;
}

.btn-open-account:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
}

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


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

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

/* Mobile Responsive - Hero Background */
@media (max-width: 768px) {
    .hero {
        background: 
            linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
            url('../images/mockpus/cpmobile.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        padding: 6rem 20px 4rem;
        justify-content: center;
        /* Otimização para carregamento instantâneo */
        will-change: auto;
    }
    
    .hero-container {
        max-width: 100%;
        justify-content: center;
        padding-left: 0;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-highlight {
        font-size: 1.8rem;
        margin-top: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-slogan {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        margin: 2rem 0;
    }
    
    .btn-large {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-intro {
    margin-bottom: 3rem;
}

.hero-label {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight {
    color: #A5C911;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #A5C911;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

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

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #A5C911;
    line-height: 1;
}

.metric-text {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* Simplified CTA styling inspired by Sicredi */

.hero-btn-main {
    background: white;
    color: #008034;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.hero-btn-demo {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.hero-btn-demo:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}



.hero-visual {
    flex: 1.2;
    position: relative;
}

.hero-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    padding: 1rem 1.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.payment-card {
    top: 15%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.success-card {
    top: 45%;
    left: -15%;
    animation-delay: 1s;
}

.floating-card.pix-card {
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.card-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #008034, #A5C911);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.card-title {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.card-value {
    font-size: 1.1rem;
    color: #008034;
    font-weight: bold;
}

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

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

.btn-primary {
    background: #008034;
    color: white;
}

.btn-primary:hover {
    background: #006627;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,128,52,0.3);
}

.btn-secondary {
    background: transparent;
    color: #008034;
    border: 2px solid #008034;
}

.btn-secondary:hover {
    background: #008034;
    color: white;
}

/* How It Works Styles */
.how-it-works {
    padding: 80px 20px;
    background: #f8f9fa;
}

.how-it-works-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.how-it-works-text {
    flex: 1;
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: #008034;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #A5C911;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,128,52,0.1);
}

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

.step-number {
    background: linear-gradient(135deg, #008034, #A5C911);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,128,52,0.3);
}

.step-details h3 {
    color: #008034;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.how-it-works-cta {
    background: #008034;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.how-it-works-cta:hover {
    background: #006627;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,128,52,0.3);
}

.how-it-works-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-showcase {
    position: relative;
    max-width: 400px;
}

.success-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.success-badge {
    align-self: flex-end;
    background: rgba(165,201,17,0.95);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-size: 0.9rem;
}

.success-stats {
    display: flex;
    gap: 1rem;
    align-self: flex-start;
}

.stat-item {
    background: rgba(255,255,255,0.95);
    padding: 0.8rem 1rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #008034;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* Payment Methods Section */
.payment-methods.scroll-stack {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    overflow: hidden;
}

.payment-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(0,128,52,0.3));
}

/* ScrollStack Container Styles */
.scroll-stack-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 80vh;
    perspective: 1000px;
}

.payment-stack {
    position: relative;
    height: 100%;
    overflow-y: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    padding: 20px 0;
}

.stack-item {
    position: sticky;
    top: 20px;
    margin-bottom: 30px;
    scroll-snap-align: start;
    transform-origin: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.stack-item:nth-child(1) { --stack-index: 0; }
.stack-item:nth-child(2) { --stack-index: 1; }
.stack-item:nth-child(3) { --stack-index: 2; }
.stack-item:nth-child(4) { --stack-index: 3; }
.stack-item:nth-child(5) { --stack-index: 4; }
.stack-item:nth-child(6) { --stack-index: 5; }

.stack-item.stacked {
    transform: 
        translateY(calc(var(--stack-index) * -15px)) 
        scale(calc(1 - var(--stack-index) * 0.05))
        rotateX(calc(var(--stack-index) * -2deg));
    z-index: calc(10 - var(--stack-index));
    opacity: calc(1 - var(--stack-index) * 0.1);
}

.stack-item.active {
    transform: translateY(0) scale(1) rotateX(0deg);
    z-index: 10;
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0, 128, 52, 0.3);
}

/* Scroll Indicators */
.scroll-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 20px 0;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 128, 52, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #008034;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 128, 52, 0.4);
}

.indicator:hover {
    background: rgba(0, 128, 52, 0.6);
    transform: scale(1.1);
}

/* Custom scrollbar for stack */
.payment-stack::-webkit-scrollbar {
    width: 8px;
}

.payment-stack::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.payment-stack::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #008034, #A5C911);
    border-radius: 10px;
}

.payment-stack::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #006b2d, #8fb80e);
}

/* Custom scrollbar for payment cards */
.payment-cards-container::-webkit-scrollbar {
    width: 6px;
}

.payment-cards-container::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.payment-cards-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #008034, #A5C911);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.payment-cards-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #A5C911, #008034);
}

/* Stack effect for cards */
.payment-card {
    background: white;
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    min-height: 80px;
    cursor: pointer;
    margin-bottom: 8px;
    transform-origin: center top;
}

.payment-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.payment-card:nth-child(odd) {
    transform: rotate(-0.3deg);
}

.payment-card.expanded {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008034, #A5C911);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.payment-card.expanded::before {
    transform: scaleX(1);
}

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

.card-icon {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0,128,52,0.1), rgba(165,201,17,0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-card.expanded .card-icon {
    background: linear-gradient(135deg, #008034, #A5C911);
    transform: scale(1.1);
}

.payment-card.expanded .card-icon {
    filter: grayscale(0) brightness(1.2);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: color 0.3s ease;
}

.payment-card.expanded .card-title {
    color: #008034;
}

.card-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-card.expanded .card-content {
    max-height: 280px;
    opacity: 1;
    margin-top: 0.8rem;
}

.payment-card:not(.expanded) {
    height: 70px;
    overflow: hidden;
}

.payment-card.expanded {
    min-height: 260px;
    margin-bottom: 12px;
    z-index: 2;
    position: relative;
}

.card-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(0,128,52,0.05), rgba(165,201,17,0.05));
    border-radius: 10px;
    border: 1px solid rgba(165,201,17,0.2);
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #008034;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #333;
    padding: 0.2rem 0;
}

.feature::before {
    content: '✓';
    color: #008034;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: rgba(165,201,17,0.3);
}

.payment-card.expanded {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,128,52,0.2);
    border-color: #A5C911;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(248,255,248,1) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .card-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .payment-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
}

.payment-header h2 {
    font-size: 2.8rem;
    color: #008034;
    margin-bottom: 1rem;
    font-weight: 800;
}

.payment-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.payment-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 2rem;
    border-radius: 25px;
    margin-bottom: 1rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
    transform: translateX(-50px);
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.method-item.active {
    opacity: 1;
    transform: translateX(0);
    background: linear-gradient(135deg, rgba(0,128,52,0.05) 0%, rgba(165,201,17,0.05) 100%);
    border: 2px solid rgba(165,201,17,0.3);
    box-shadow: 0 20px 40px rgba(0,128,52,0.1);
}

.method-number {
    font-size: 3rem;
    font-weight: 900;
    color: #A5C911;
    background: linear-gradient(135deg, rgba(0,128,52,0.1), rgba(165,201,17,0.1));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.method-item.active .method-number {
    background: linear-gradient(135deg, #008034, #A5C911);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,128,52,0.3);
}

.method-content {
    flex: 1;
}

.method-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: rgba(0,128,52,0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.method-item.active .method-icon-large {
    background: linear-gradient(135deg, rgba(0,128,52,0.15), rgba(165,201,17,0.15));
    transform: scale(1.1);
}

.method-item h3 {
    font-size: 2.2rem;
    color: #008034;
    margin-bottom: 1rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.method-item.active h3 {
    color: #008034;
}

.method-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(0,128,52,0.1);
    color: #008034;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-item.active .stat-item {
    background: linear-gradient(135deg, #008034, #A5C911);
    color: white;
    transform: translateY(-2px);
}

.method-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    color: #008034;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.method-item.active .feature {
    opacity: 1;
    color: #006627;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #008034, #A5C911);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #006627;
}

.payment-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #008034;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.method-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,128,52,0.05);
    border-radius: 50%;
}

.method-card h3 {
    color: #008034;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.method-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.method-card ul {
    list-style: none;
}

.method-card li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.method-card.featured {
    border: 2px solid #A5C911;
    background: linear-gradient(135deg, rgba(165,201,17,0.05) 0%, rgba(0,128,52,0.05) 100%);
    transform: scale(1.05);
}

.method-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.method-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #A5C911, #008034);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(165,201,17,0.4);
}

.method-icon.pix-icon {
    background: linear-gradient(135deg, rgba(165,201,17,0.1), rgba(0,128,52,0.1));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(165,201,17,0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(165,201,17,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(165,201,17,0);
    }
}

/* PIX Technology Section */
.pix-technology {
    padding: 80px 20px;
    background: linear-gradient(135deg, #008034 0%, #A5C911 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pix-technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 10s ease-in-out infinite;
}

.pix-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.pix-text {
    flex: 1;
}

.pix-technology h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease-out;
}

.pix-technology .section-subtitle {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    animation: slideInLeft 1s ease-out 0.2s both;
}

.pix-features {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pix-feature {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease-out calc(0.4s + var(--delay, 0s)) both;
}

.pix-feature:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.2);
}

.pix-feature:nth-child(1) { --delay: 0s; }
.pix-feature:nth-child(2) { --delay: 0.1s; }
.pix-feature:nth-child(3) { --delay: 0.2s; }

.feature-icon {
    font-size: 2.2rem;
    background: rgba(255,255,255,0.25);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.feature-icon-img {
    width: 35px;
    height: 35px;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #A5C911;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.feature-text p {
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.pix-cta {
    background: white;
    color: #008034;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: slideInLeft 1s ease-out 0.8s both;
}

.pix-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.pix-image {
    flex: 1.3;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    animation: slideInRight 1s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
}

.qr-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: slideInUp 1s ease-out 1s both;
}

.qr-badge {
    background: rgba(255,255,255,0.98);
    color: #008034;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-size: 1rem;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* App Showcase Section */
.app-showcase {
    padding: 80px 20px;
    background: white;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.showcase-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.app-demo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.app-features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.feature-highlight {
    background: rgba(165,201,17,0.95);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    align-self: flex-start;
}

.feature-highlight.app-highlight {
    align-self: flex-end;
    background: rgba(0,128,52,0.95);
}

.showcase-text {
    flex: 1;
}

.showcase-text h2 {
    font-size: 2.5rem;
    color: #008034;
    margin-bottom: 1rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #A5C911;
    transition: transform 0.3s ease;
}

.app-feature:hover {
    transform: translateX(10px);
}

.app-feature .feature-icon {
    font-size: 2rem;
    background: rgba(0,128,52,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #008034;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.app-download {
    margin-top: 2rem;
}

/* Team Expertise Section */
.team-expertise {
    padding: 80px 20px;
    background: #f8f9fa;
}

.expertise-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 2.5rem;
    color: #008034;
    margin-bottom: 1rem;
}

.expertise-highlights {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 120px;
}

.highlight-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: #008034;
    margin-bottom: 0.5rem;
}

.highlight-item span {
    color: #666;
    font-size: 0.9rem;
}

.expertise-services {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #A5C911;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-icon {
    font-size: 1.8rem;
    background: rgba(165,201,17,0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-content h4 {
    color: #008034;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.service-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

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

.expertise-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.expert-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.expert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.expert-badge {
    background: rgba(0,128,52,0.95);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-size: 0.9rem;
    align-self: flex-start;
}

.expert-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-self: flex-end;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    padding: 0.6rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    font-weight: 500;
    color: #008034;
}

.credential-icon {
    font-size: 1rem;
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background: #f8f9fa;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #008034;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: #008034;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #008034;
    margin-bottom: 1rem;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    color: #008034;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #008034;
}

.contact-form button {
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #008034;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

.footer-brand img {
    filter: brightness(1.2) contrast(1.1);
}

.cnpj {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    color: #A5C911;
    font-weight: 500;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h4 {
    color: #A5C911;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #A5C911;
}

.app-stores {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.app-store-btn {
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 100px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.apple-store {
    background: linear-gradient(135deg, #000000, #434343);
    color: white;
}

.google-store {
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
}

.store-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-info {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.download-text {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Help Section Styles */
.help-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.help-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #008034;
    margin-bottom: 1rem;
}

.help-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.help-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.help-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.help-category h3 {
    color: #008034;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.help-category p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.help-link {
    color: #A5C911;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.help-link:hover {
    color: #008034;
}

.help-contact {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.help-contact h3 {
    color: #008034;
    margin-bottom: 1rem;
}

.help-contact p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    background: #008034;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.contact-btn:hover {
    background: #006627;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet adjustments */
    .container {
        padding: 0 30px;
    }
    
    .hero {
        background: 
            linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
            url('../images/mockpus/imgcp.png');
        background-size: cover;
        background-position: center 35%;
        background-repeat: no-repeat;
        background-attachment: scroll;
        /* Otimização para tablets */
        will-change: auto;
    }

    .hero-container {
        max-width: 90%;
        padding-left: 1rem;
    }

    .hero-content {
        max-width: 550px;
    }

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

    .hero-highlight {
        font-size: 2.4rem;
    }
    
    .how-it-works-content,
    .showcase-content,
    .expertise-content,
    .pix-content {
        gap: 2rem;
    }
    
    /* Tablet navbar adjustments */
    .navbar {
        height: 58px;
        padding: 0.7rem 0;
        min-height: 58px;
    }
    
    .navbar-container {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    /* Always show mobile menu on tablet - no desktop nav */
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        width: 40px;
        height: 40px;
        padding: 7px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-nav-overlay {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    .desktop-nav {
        gap: 1rem;
    }
    
    .desktop-nav a {
        font-size: 0.95rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .brand {
        font-size: 1.8rem;
        font-weight: 800;
    }
    
    .hamburger-line {
        width: 22px;
        height: 3px;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    /* Mobile adjustments - Centralize all content */
    .container {
        padding: 0 20px;
        text-align: center;
    }
    
    .navbar {
        height: 55px;
        padding: 0.6rem 0;
        min-height: 55px;
        display: flex;
        align-items: center;
    }
    
    .navbar-container {
        padding: 0 1.2rem;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: none;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        width: 42px;
        height: 42px;
        padding: 8px;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0,128,52,0.1);
        transform: scale(1.05);
    }
    
    .mobile-nav-overlay {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .logo {
        justify-content: flex-start;
        gap: 10px;
        order: 1;
        padding: 0.3rem 0.6rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .logo:hover {
        background: rgba(0,128,52,0.05);
    }
    
    .logo img {
        width: 38px;
        height: 38px;
        transition: all 0.3s ease;
    }
    
    .brand {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: -0.2px;
    }
    
    /* Mobile hamburger adjustments */
    .hamburger-line {
        width: 24px;
        height: 3px;
        margin: 3px 0;
        border-radius: 1.5px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 1;
    }
    
    /* White hamburger for transparent navbar */
    .navbar:not(.scrolled):not(.static) .hamburger-line {
        background: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.5);
        opacity: 1;
    }
    
    /* Mobile navbar height adjustment */
    .hero {
        padding-top: 75px;
    }
    
    .legal-page {
        padding-top: 75px;
    }
    
    /* Enhanced mobile nav visual improvements */
    .mobile-nav {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
        width: 300px;
        right: -320px;
        padding: 1.5rem;
    }
    
    .mobile-nav-header {
        background: linear-gradient(135deg, rgba(0,128,52,0.08), rgba(165,201,17,0.05));
        border: 1px solid rgba(165,201,17,0.2);
        margin: -0.5rem -0.5rem 1.5rem -0.5rem;
        padding: 1rem;
    }
    
    /* Mobile navbar states */
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }
    
    .navbar:not(.scrolled):not(.static) {
        background: rgba(0,0,0,0.1);
        backdrop-filter: blur(5px);
    }
    
    /* Mobile menu improvements */
    .mobile-menu-toggle {
        display: flex !important;
        border: 1px solid transparent;
        background: rgba(255,255,255,0.1);
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-nav-overlay {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    .navbar:not(.scrolled):not(.static) .mobile-menu-toggle {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border-color: rgba(255,255,255,0.2);
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0,128,52,0.15);
        border-color: rgba(0,128,52,0.3);
    }
    
    /* Logo adjustments for mobile - removed background */

    .hero {
        background: 
            linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
            url('../images/mockpus/cpmobile.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        padding: 5rem 20px 3rem;
        min-height: auto;
        justify-content: center;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 1rem;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.0rem;
        line-height: 1.2;
    }

    .hero-highlight {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-slogan {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }


    /* Simplified CTA mobile responsiveness */
    .btn-open-account {
        min-width: auto;
        padding: 0.9rem 2rem;
        font-size: 1rem;
        border-radius: 6px;
    }

    .btn-open-account:hover {
        transform: translateY(-1px);
    }

    .hero-actions {
        margin: 1.5rem 0 2.5rem 0;
    }
    
    /* Section responsiveness */
    .how-it-works-content,
    .showcase-content,
    .expertise-content,
    .pix-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    
    .step-details {
        text-align: center;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card {
        text-align: center;
        padding: 1.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-form {
        text-align: left;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand-section {
        align-items: center;
        text-align: center;
    }

    .footer-section {
        align-items: center;
        text-align: center;
    }

    .app-stores {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .store-badge {
        justify-content: center;
        min-width: 120px;
    }
    
    /* Legal pages mobile */
    .legal-page {
        padding: 6rem 20px 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
        text-align: left;
    }
    
    .legal-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
        text-align: left;
    }
    
    /* Payment cards responsive */
    .payment-methods {
        padding: 4rem 15px;
        text-align: center;
    }
    
    .payment-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .payment-header h2 {
        font-size: 2.4rem;
        text-align: center;
    }
    
    .card-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .payment-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .card-header {
        justify-content: center;
        text-align: center;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .card-content {
        text-align: center;
    }
    
    .scroll-stack-container {
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
    
    /* Ensure all headings and paragraphs are centered on mobile */
    h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
    }
    
    p:not(.legal-content p) {
        text-align: center !important;
    }
    
    .section-subtitle {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Hero specific mobile styles */
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hide floating elements on mobile for clean look */
    .hero-floating-elements {
        display: none;
    }

    /* Remove text animations on mobile for instant load */
    .hero-title,
    .hero-subtitle,
    .hero-slogan,
    .hero-actions {
        animation: none;
    }
}

@media (max-width: 480px) {
    /* Small mobile adjustments */
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        height: 50px;
        padding: 0.5rem 0;
        min-height: 50px;
    }
    
    .navbar-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .logo {
        padding: 0.2rem 0.4rem;
        gap: 8px;
    }
    
    .hero {
        background: 
            linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
            url('../images/mockpus/cpmobile.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        padding: 4rem 15px 3rem;
        justify-content: center;
    }
    
    .hero-container {
        padding: 0 0.5rem;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-highlight {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-slogan {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Small mobile CTA - Sicredi style */
    .btn-open-account {
        min-width: auto;
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        border-radius: 6px;
    }

    .hero-actions {
        margin: 1.2rem 0 2rem 0;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-content h2 {
        font-size: 1.2rem;
    }
    
    .legal-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .app-stores {
        gap: 0.5rem;
    }
    
    .store-badge {
        padding: 0.5rem 0.8rem;
        min-width: 100px;
    }
    
    .download-text {
        font-size: 0.7rem;
    }
    
    .logo img {
        width: 34px;
        height: 34px;
    }
    
    .brand {
        font-size: 1.6rem;
        letter-spacing: -0.2px;
    }
    
    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        padding: 6px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 3px;
        margin: 3px 0;
        opacity: 1;
    }
    
    .mobile-nav {
        width: 280px;
        right: -300px;
        padding: 1.2rem;
    }
    
    .mobile-nav-header {
        margin: -0.2rem -0.2rem 1.2rem -0.2rem;
        padding: 0.8rem;
    }
    
    .mobile-nav-link {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .mobile-brand {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Legal Pages Styles */
.legal-page {
    padding: 8rem 0 4rem;
    background: #f8f9fa;
}

.legal-page h1 {
    color: #008034;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.legal-content h2 {
    color: #008034;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #A5C911;
    padding-bottom: 0.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.back-to-home {
    text-align: center;
}

/* Help Center Styles */
.help-center {
    padding: 8rem 0 4rem;
    background: #f8f9fa;
}

.help-center h1 {
    color: #008034;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.help-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.help-search {
    display: flex;
    max-width: 600px;
    margin: 0 auto 4rem;
    background: white;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
}

.search-btn {
    background: #008034;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-card h3 {
    color: #008034;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #A5C911;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-item h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-support {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-support h2 {
    color: #008034;
    margin-bottom: 1rem;
}

.contact-support p {
    color: #666;
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    background: #008034;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.support-btn:hover {
    background: #006627;
    transform: translateY(-2px);
}

/* Mobile responsive improvements */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet-specific improvements */
    .navbar:not(.scrolled):not(.static) {
        background: rgba(0,0,0,0.05);
        backdrop-filter: blur(8px);
    }
    
    .navbar.scrolled {
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(255,255,255,0.9);
        border: 1px solid rgba(0,0,0,0.1);
        cursor: pointer;
    }
    
    .navbar:not(.scrolled):not(.static) .mobile-menu-toggle {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.3);
    }

    /* Tablet CTA - Sicredi style */
    .btn-open-account {
        padding: 1rem 2.8rem;
        font-size: 1.1rem;
        min-width: auto;
    }

    .hero-actions {
        margin: 2rem 0 2.5rem 0;
        justify-content: center;
    }

}

/* Mobile menu loading animation */
.mobile-nav.loading {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-nav-overlay.active .mobile-nav {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInRight {
    from {
        right: -320px;
        opacity: 0.8;
    }
    to {
        right: 0;
        opacity: 1;
    }
}

/* Bounce effect for hamburger */
.mobile-menu-toggle.active {
    animation: bounceHamburger 0.6s ease;
}

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

/* Accessibility improvements for mobile menu */
@media (prefers-reduced-motion: reduce) {
    .mobile-nav,
    .mobile-nav-overlay,
    .hamburger-line,
    .mobile-nav-links li {
        transition: none;
        animation: none;
    }
}

/* Focus styles for better accessibility */
.mobile-menu-toggle:focus,
.mobile-nav-close:focus,
.mobile-nav-link:focus {
    outline: 2px solid #008034;
    outline-offset: 2px;
}

/* Hide navbar logo when mobile menu is open - only on mobile */
@media (max-width: 768px) {
    body.mobile-menu-open .navbar .logo {
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mobile-nav {
        background: white;
        border-left: 4px solid #008034;
    }
    
    .mobile-nav-link {
        border: 1px solid #ddd;
    }
    
    .mobile-nav-link:hover {
        background: #008034;
        color: white;
    }
}

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

.method-card,
.advantage-item,
.category-card {
    animation: fadeInUp 0.6s ease-out;
}



/* Payment Methods Section */
.payment-methods {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

/* Header */
.payment-header {
    text-align: center;
    margin-bottom: 5rem;
}

.payment-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.payment-header .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Payment Cards */
.payment-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-card:hover {
    transform: translateY(-8px);
    border-color: #008034;
    box-shadow: 0 20px 50px rgba(0,128,52,0.15);
}

/* Removed recommended card styles */

/* Card Header */
.card-header {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.card-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9f3 0%, #e8f5ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    padding: 5px;
}

.card-icon svg {
    width: 45px;
    height: 45px;
    fill: #008034;
    transition: all 0.3s ease;
}

.payment-card:hover .card-icon {
    background: linear-gradient(135deg, #008034, #A5C911);
    transform: scale(1.1);
}

.payment-card:hover .card-icon svg {
    fill: white;
    transform: scale(1.1);
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Card Description */
.payment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Removed card stats and brands styles */

/* Payment CTA */
.payment-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #008034 0%, #A5C911 100%);
    border-radius: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.payment-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.payment-cta .btn {
    background: white;
    color: #008034;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.payment-cta .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .payment-methods {
        padding: 80px 0;
    }
    
    .payment-header h2 {
        font-size: 2.5rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-card {
        padding: 2.5rem 2rem;
        min-height: 280px;
    }
    
    .card-icon {
        width: 90px;
        height: 90px;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .card-header h3 {
        font-size: 1.8rem;
    }
    
    .payment-cta {
        margin-top: 4rem;
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .payment-header h2 {
        font-size: 2rem;
    }
    
    .payment-card {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
    }
    
    .card-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .card-header h3 {
        font-size: 1.6rem;
    }
    
    .payment-card p {
        font-size: 1rem;
    }
}
}