/* 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;
}

footer .download-text {
    font-size: 0.75rem;
    opacity: 1;
    font-weight: 500;
    color: white !important;
}

footer .store-name {
    color: white !important;
    font-weight: 600;
}

/* 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;
    }
}

/* Nova Seção Hero do App - Atualizado */
.app-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #008034 0%, #A5C911 100%);
}

/* Bolhas animadas (igual à seção PIX) */
.app-hero::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)"/><circle cx="60" cy="15" r="1.2" fill="rgba(255,255,255,0.08)"/><circle cx="15" cy="60" r="1.8" fill="rgba(255,255,255,0.12)"/><circle cx="85" cy="75" r="1.3" fill="rgba(255,255,255,0.09)"/><circle cx="35" cy="35" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="90" r="1.6" fill="rgba(255,255,255,0.11)"/></svg>');
    background-size: 300px 300px;
    animation: floatBubbles 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Animação das bolhas */
@keyframes floatBubbles {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 1;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) translateX(-20px);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-40px) translateX(10px);
        opacity: 0.7;
    }
}

.app-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 128, 52, 0.85) 0%,
        rgba(165, 201, 17, 0.85) 100%);
    backdrop-filter: blur(2px);
    z-index: 0;
}

/* Layout de duas colunas - Grid 50/50 */
.app-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    gap: 0;
}

.app-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 4rem 4rem 4rem 2rem;
    position: relative;
    z-index: 5;
}

.app-hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 4;
}

.app-hero-visual .phone-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.3));
    animation: slideInUp 0.8s ease-out 0.9s both;
}

/* === MÃO 3D REAL COM COMPOSIÇÃO DE TELA === */

/* Container principal - Ocupa todo espaço da coluna direita */
.phone-hand-mockup-real {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

/* === MÃO ENTRANDO PELO CANTO (estilo Banco Next) === */

/* Container da mão - Preenche TODO o espaço da coluna direita */
.hand-entering-container {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    z-index: 10;
}

/* Imagem do braço - Preenche completamente o espaço */
.hand-entering-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block !important;
    opacity: 1 !important;
    filter:
        drop-shadow(-30px 30px 60px rgba(0, 0, 0, 0.4))
        drop-shadow(-15px 15px 40px rgba(0, 0, 0, 0.3))
        drop-shadow(0 10px 30px rgba(0, 200, 83, 0.2));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effect - Zoom suave */
.hand-entering-container:hover .hand-entering-image {
    transform: scale(1.08);
    filter:
        drop-shadow(-35px 35px 70px rgba(0, 0, 0, 0.5))
        drop-shadow(-20px 20px 50px rgba(0, 0, 0, 0.4))
        drop-shadow(0 12px 35px rgba(0, 200, 83, 0.25));
}

/* Animação de entrada suave */
@keyframes slideInFromCorner {
    0% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Container da mão 3D */
.hand-3d-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    transform-style: preserve-3d;
    animation: floatPhone 3s ease-in-out infinite;
}

/* Imagem da mão 3D com celular (sem fundo - perfeita) */
.hand-3d-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5))
        drop-shadow(0 15px 35px rgba(0, 0, 0, 0.35))
        drop-shadow(0 5px 20px rgba(0, 200, 83, 0.2));
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Hover effect - Mão 3D com celular */
.hand-3d-container:hover .hand-3d-image {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.03);
    filter:
        drop-shadow(0 35px 70px rgba(0, 0, 0, 0.6))
        drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45))
        drop-shadow(0 8px 25px rgba(0, 200, 83, 0.3));
}

/* Tela do app sobreposta (não usado mais) */
.app-screen-overlay {
    display: none;
}

/* === MÃO 3D PROFISSIONAL - REDESENHADA === */

/* Braço/Manga Verde (parte de baixo) */
.hand-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) perspective(800px) rotateX(-5deg);
    width: 200px;
    height: 260px;
    background:
        linear-gradient(135deg,
            #00C853 0%,
            #00E676 25%,
            #00D860 50%,
            #00E676 75%,
            #00C853 100%);
    border-radius: 100px 100px 60px 60px;
    box-shadow:
        0 20px 60px rgba(0, 200, 83, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset -15px -15px 30px rgba(0, 100, 50, 0.3),
        inset 15px 15px 30px rgba(0, 255, 120, 0.2);
    z-index: 1;
    transform-style: preserve-3d;
}

/* Punho da camisa (detalhe branco) */
.hand-base::before {
    content: '';
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 18px;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.5) 100%);
    border-radius: 9px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.8);
}

/* Sombra/profundidade no pulso */
.hand-base::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 40px;
    background: radial-gradient(ellipse at center,
        rgba(0, 80, 40, 0.2) 0%,
        transparent 70%);
    border-radius: 50%;
}

/* Container da Mão (palma + dedos) */
.hand-fingers {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 360px;
    z-index: 3;
    transform-style: preserve-3d;
}

/* Palma da Mão - Redesenhada com anatomia realista */
.hand-fingers::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) perspective(600px) rotateX(-8deg);
    width: 165px;
    height: 210px;
    background:
        radial-gradient(ellipse 80% 100% at 50% 40%,
            #FFE4CC 0%,
            #FFDCC1 20%,
            #FFD4B3 45%,
            #FFCBA4 70%,
            #FFBE96 100%);
    border-radius: 82px 82px 50px 50px;
    box-shadow:
        -8px 5px 25px rgba(0, 0, 0, 0.25),
        8px 5px 25px rgba(0, 0, 0, 0.20),
        inset -5px -5px 15px rgba(204, 153, 102, 0.15),
        inset 5px 5px 15px rgba(255, 255, 255, 0.6),
        inset 0 -8px 20px rgba(204, 153, 102, 0.08);
}

/* Polegar (esquerda) - Muito melhorado */
.hand-fingers::after {
    content: '';
    position: absolute;
    bottom: 105px;
    left: 5px;
    width: 58px;
    height: 165px;
    background:
        linear-gradient(165deg,
            #FFE4CC 0%,
            #FFDCC1 25%,
            #FFD4B3 50%,
            #FFCBA4 75%,
            #FFBE96 100%);
    border-radius: 29px 29px 24px 20px;
    transform: rotate(-18deg) perspective(400px) rotateY(8deg);
    box-shadow:
        -4px 6px 15px rgba(0, 0, 0, 0.3),
        inset -3px -3px 10px rgba(204, 153, 102, 0.15),
        inset 3px 3px 10px rgba(255, 255, 255, 0.5),
        inset 0 -5px 12px rgba(204, 153, 102, 0.08);
    transform-style: preserve-3d;
}

/* === DEDOS 3D REALISTAS (lado direito) === */
.finger {
    position: absolute;
    background:
        radial-gradient(ellipse 80% 100% at 40% 30%,
            #FFE4CC 0%,
            #FFDCC1 20%,
            #FFD4B3 50%,
            #FFCBA4 80%,
            #FFBE96 100%);
    border-radius: 18px 18px 12px 12px;
    box-shadow:
        3px 4px 12px rgba(0, 0, 0, 0.25),
        -1px 2px 8px rgba(0, 0, 0, 0.15),
        inset -2px -2px 8px rgba(204, 153, 102, 0.12),
        inset 2px 2px 8px rgba(255, 255, 255, 0.5);
    transform-style: preserve-3d;
}

/* Articulação 1 (mais realista) */
.finger::before {
    content: '';
    position: absolute;
    top: 32%;
    left: 5%;
    right: 5%;
    height: 3px;
    background:
        radial-gradient(ellipse at center,
            rgba(204, 153, 102, 0.25) 0%,
            rgba(204, 153, 102, 0.18) 40%,
            transparent 70%);
    border-radius: 50%;
    box-shadow:
        inset 0 1px 2px rgba(204, 153, 102, 0.3),
        0 0.5px 1px rgba(255, 255, 255, 0.2);
}

/* Articulação 2 */
.finger::after {
    content: '';
    position: absolute;
    top: 66%;
    left: 5%;
    right: 5%;
    height: 3px;
    background:
        radial-gradient(ellipse at center,
            rgba(204, 153, 102, 0.22) 0%,
            rgba(204, 153, 102, 0.15) 40%,
            transparent 70%);
    border-radius: 50%;
    box-shadow:
        inset 0 1px 2px rgba(204, 153, 102, 0.25),
        0 0.5px 1px rgba(255, 255, 255, 0.2);
}

/* Dedo 1 - Indicador (mais visível) */
.finger-1 {
    top: 55px;
    right: 3px;
    width: 34px;
    height: 155px;
    transform: rotate(12deg) perspective(500px) rotateY(-5deg);
    z-index: 5;
}

/* Dedo 2 - Médio (mais longo e central) */
.finger-2 {
    top: 32px;
    right: 38px;
    width: 34px;
    height: 172px;
    transform: rotate(5deg) perspective(500px) rotateY(-3deg);
    z-index: 4;
}

/* Dedo 3 - Anelar */
.finger-3 {
    top: 48px;
    right: 73px;
    width: 32px;
    height: 155px;
    transform: rotate(-1deg) perspective(500px) rotateY(-2deg);
    z-index: 3;
}

/* Dedo 4 - Mínimo (menor) */
.finger-4 {
    top: 72px;
    right: 105px;
    width: 28px;
    height: 128px;
    transform: rotate(-6deg) perspective(500px) rotateY(0deg);
    z-index: 2;
}

/* Sombra do celular projetada na mão (muito realista) */
.phone-shadow {
    position: absolute;
    top: 52%;
    left: 48%;
    transform: translate(-47%, -50%);
    width: 280px;
    height: 520px;
    background:
        radial-gradient(ellipse 70% 80% at 50% 45%,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.22) 25%,
            rgba(0, 0, 0, 0.12) 45%,
            transparent 65%);
    z-index: 1;
    pointer-events: none;
    filter: blur(8px);
}

/* Celular com efeito 3D - Posição melhorada */
.phone-image-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) perspective(1000px) rotateY(-8deg) rotateX(3deg) rotateZ(-2deg);
    width: 300px;
    height: auto;
    filter:
        drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6))
        drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4))
        drop-shadow(0 5px 15px rgba(0, 200, 83, 0.25))
        drop-shadow(-5px 0 20px rgba(0, 0, 0, 0.2));
    z-index: 4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.phone-image-3d:hover {
    transform: translate(-50%, -50%) perspective(1000px) rotateY(-3deg) rotateX(1deg) rotateZ(-1deg) scale(1.03);
    filter:
        drop-shadow(0 35px 70px rgba(0, 0, 0, 0.7))
        drop-shadow(0 20px 45px rgba(0, 0, 0, 0.5))
        drop-shadow(0 8px 25px rgba(0, 200, 83, 0.35))
        drop-shadow(-8px 0 25px rgba(0, 0, 0, 0.3));
}

/* Animação de flutuação */
@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0px) rotateZ(-1deg);
    }
    50% {
        transform: translateY(-15px) rotateZ(1deg);
    }
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out 0.3s both;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.app-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.hero-subtitle {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.app-hero-description {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.98);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    animation: slideInUp 0.8s ease-out 0.7s both;
}

.app-download-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.9s both;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.95);
    color: #333;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    min-width: 180px;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: white;
}

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

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-text {
    font-size: 0.9rem;
    color: #666;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Estilos do telefone e interação */
.phone-container {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    animation: phoneFloat 3s ease-in-out infinite !important;
    width: 100% !important;
    height: 100% !important;
}

.phone-image {
    max-width: 300px !important;
    width: 100% !important;
    height: auto !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)) !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    opacity: 1 !important;
    z-index: 1 !important;
}

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

.hand-interaction {
    position: absolute !important;
    top: 50% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    display: block !important;
    opacity: 1 !important;
}

.hand-pointer {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255,255,255,0.9) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
    animation: clickPulse 2s ease-in-out infinite !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

.hand-pointer svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

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

@keyframes clickPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(103, 194, 58, 0.4);
    }
}

/* Seção de Demonstração do App - Nova */
.app-demo {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.app-demo::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.demo-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #008034, #A5C911);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.demo-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.demo-showcase {
    position: relative;
    z-index: 2;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 600px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.demo-left .feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(165, 201, 17, 0.1);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(165, 201, 17, 0.3);
}

.feature-icon-box {
    background: linear-gradient(135deg, #A5C911, #008034);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

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

.demo-center {
    display: flex;
    justify-content: center;
}

.phone-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.phone-carousel {
    position: relative;
    width: 100%;
    height: 800px;
}

.phone-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-container.active {
    opacity: 1;
    transform: translateX(0);
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.phone-screen:hover {
    transform: scale(1.02);
}

.screen-tooltip {
    position: absolute;
    top: 20%;
    right: -50px;
    background: rgba(0, 128, 52, 0.95);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: fadeInRight 0.8s ease-out 0.5s both;
}

.tooltip-content h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.tooltip-content p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.tooltip-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tooltip-content li {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.demo-controls {
    display: flex;
    gap: 2rem;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.control-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.control-content small {
    color: #999;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.demo-btn.active {
    border-color: #A5C911;
    background: rgba(165, 201, 17, 0.1);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

.phone-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(165, 201, 17, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot.active {
    background: #A5C911;
    transform: scale(1.3);
}

.demo-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-panel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-panel h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-row:last-child {
    margin-bottom: 0;
}

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

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.3rem;
}

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

.download-panel {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid rgba(165, 201, 17, 0.1);
}

.download-panel h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.download-panel p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #A5C911, #008034);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(165, 201, 17, 0.3);
}

.demo-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(165, 201, 17, 0.05);
    border-radius: 20px;
}

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

.benefit-number {
    font-size: 2rem;
    font-weight: 800;
    color: #008034;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Seção de Recursos Expandida */
.app-features-expanded {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.features-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.feature-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out calc(0.1s * var(--index, 0)) both;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-card .feature-icon {
    background: rgba(255,255,255,0.2);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #A5C911;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
}

/* Seção de Testemunhos */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

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

.testimonials-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-rating {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.star {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite calc(0.2s * var(--index, 0));
}

.testimonial-card blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 2rem;
    text-align: center;
    font-style: italic;
}

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

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #A5C911;
}

.author-info h4 {
    margin: 0 0 0.3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-nav {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #A5C911;
    transform: scale(1.3);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #008034;
    margin-bottom: 0.5rem;
}

.trust-item span {
    color: #666;
    font-weight: 500;
}

/* Seção Call-to-Action Final */
.final-cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: #000;
    color: white;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-1 {
    animation: parallax1 20s ease-in-out infinite;
}

.bg-2 {
    animation: parallax2 25s ease-in-out infinite;
}

.bg-3 {
    animation: parallax3 30s ease-in-out infinite;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 128, 52, 0.8) 0%,
        rgba(165, 201, 17, 0.7) 50%,
        rgba(255, 215, 0, 0.6) 100%);
    backdrop-filter: blur(3px);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.cta-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.live-counter {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.7s both;
}

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

.counter-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.counter-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.cta-actions {
    animation: slideInRight 1s ease-out 0.5s both;
}

.early-access-form {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

.early-access-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #FFD700;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
}

.btn-submit {
    padding: 1rem 2rem;
    background: #A5C911;
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-submit:hover {
    transform: scale(1.05);
    background: #94b30f;
}

.form-note {
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

.download-options h4 {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.9);
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.store-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.security-badges {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: slideInUp 1s ease-out 1s both;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

/* Animações */
@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes parallax1 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(-20px); }
}

@keyframes parallax2 {
    0%, 100% { transform: translateX(0) translateY(0) scale(1.1); }
    33% { transform: translateX(15px) translateY(-15px) scale(1.05); }
    66% { transform: translateX(-15px) translateY(15px) scale(1.1); }
}

@keyframes parallax3 {
    0%, 100% { transform: translateX(0) translateY(0) scale(0.95); }
    50% { transform: translateX(-25px) translateY(20px) scale(1); }
}

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

@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 fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .app-hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .app-hero-content {
        text-align: center;
        max-width: 100%;
        padding: 3rem 1.5rem;
        order: 1;
    }

    .app-hero-visual {
        order: 2;
        min-height: 60vh;
        overflow: hidden;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .app-hero-title {
        font-size: 2.5rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .app-download-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .phone-container {
        margin-top: 2rem;
    }

    .phone-image {
        max-width: 250px;
    }

    .hand-interaction {
        left: 70%;
    }
}

    .demo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .demo-left .feature-list {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.2rem;
    }

    .demo-header h2 {
        font-size: 2.5rem;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1.2rem;
    }

    .phone-showcase {
        max-width: 280px;
        margin: 0 auto;
    }

    .phone-carousel {
        height: 500px;
    }

    .stats-panel {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-link {
        min-width: 150px;
        justify-content: center;
    }

    .phone-carousel {
        max-width: 300px;
        height: 500px;
    }

    .screen-tooltip {
        right: -30px;
        padding: 0.8rem 1rem;
        max-width: 200px;
    }

    .demo-controls {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .demo-btn {
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }

    .demo-benefits {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .benefit-number {
        font-size: 1.5rem;
    }

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

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .live-counter {
        justify-content: center;
    }

    .form-group {
        flex-direction: column;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        gap: 1.5rem;
    }

    .security-badges {
        gap: 1rem;
    }

    /* Phone Hand Mockup Real - Mobile Adjustments */
    .phone-hand-mockup-real {
        max-width: 100%;
        height: 450px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hand-3d-container {
        max-width: 320px;
        transform: scale(0.95);
    }

    .hand-3d-image {
        transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
    }

    .app-screen-overlay {
        transform: translate(-50%, -52%) perspective(800px) rotateY(-3deg) rotateX(2deg) scale(0.75);
        width: 52%;
        border-radius: 20px;
    }

    /* Phone Hand Mockup - Mobile Adjustments (OLD CSS - manter para compatibilidade) */
    .phone-hand-mockup {
        max-width: 320px;
        height: 480px;
        margin: 0 auto;
    }

    .hand-wrapper {
        width: 260px;
        height: 480px;
        transform: scale(0.9);
    }

    .hand-base {
        width: 160px;
        height: 200px;
        bottom: -15px;
    }

    .hand-base::before {
        width: 145px;
        height: 14px;
        bottom: 28px;
    }

    .hand-base::after {
        width: 130px;
        height: 32px;
    }

    .hand-fingers {
        width: 170px;
        height: 300px;
        bottom: 150px;
    }

    .hand-fingers::before {
        width: 135px;
        height: 170px;
        bottom: 18px;
    }

    .hand-fingers::after {
        width: 48px;
        height: 135px;
        bottom: 88px;
    }

    .finger-1 {
        width: 28px;
        height: 125px;
        top: 45px;
        right: 2px;
    }

    .finger-2 {
        width: 28px;
        height: 140px;
        top: 26px;
        right: 31px;
    }

    .finger-3 {
        width: 26px;
        height: 125px;
        top: 39px;
        right: 60px;
    }

    .finger-4 {
        width: 23px;
        height: 105px;
        top: 58px;
        right: 87px;
    }

    .phone-shadow {
        width: 230px;
        height: 430px;
        filter: blur(6px);
    }

    .phone-image-3d {
        width: 240px;
        transform: translate(-50%, -50%) perspective(800px) rotateY(-8deg) rotateX(3deg) rotateZ(-2deg);
    }

    /* Ajuste de bolhas para mobile */
    .app-hero::before {
        background-size: 200px 200px;
        animation: floatBubbles 15s ease-in-out infinite;
    }

    /* Mão entrando - Ajustes Mobile (estilo Next) */
    .app-hero-visual {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .phone-hand-mockup-real {
        width: auto;
        height: 100%;
    }

    .phone-hand-mockup-real {
        min-height: 60vh;
    }

    .hand-entering-container {
        width: 120%;
        height: 100%;
        right: -10%;
        top: 0;
    }

    .hand-entering-image {
        object-fit: contain;
        object-position: center;
        transform: perspective(1000px) rotateY(-2deg);
    }

    .hand-entering-container:hover .hand-entering-image {
        transform: perspective(1000px) rotateY(-1deg) translateX(-10px);
    }
}
}