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

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.splash-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(201, 152, 56, 0.3) 0%, transparent 70%);
    animation: pulseGold 2s ease-in-out infinite;
    pointer-events: none;
}

.splash-screen::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
    background: radial-gradient(circle, rgba(201, 152, 56, 0.4) 0%, transparent 70%);
    animation: flashGold 3s ease-out;
    pointer-events: none;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: fadeInSplash 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.splash-logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite, logoGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(201, 152, 56, 0.5));
}

.splash-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #C99838;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px #C99838, 0 0 20px #C99838;
}

.particle:nth-child(1) {
    left: 20%;
    animation: floatParticle 3s ease-in-out infinite;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 40%;
    animation: floatParticle 3.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    left: 60%;
    animation: floatParticle 3.2s ease-in-out infinite;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    left: 80%;
    animation: floatParticle 3.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    left: 10%;
    animation: floatParticle 3.3s ease-in-out infinite;
    animation-delay: 0.3s;
}

.particle:nth-child(6) {
    left: 50%;
    animation: floatParticle 3.6s ease-in-out infinite;
    animation-delay: 0.8s;
}

.particle:nth-child(7) {
    left: 70%;
    animation: floatParticle 3.4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.particle:nth-child(8) {
    left: 30%;
    animation: floatParticle 3.7s ease-in-out infinite;
    animation-delay: 0.2s;
}

.splash-loader {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(201, 152, 56, 0.3);
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #C99838 0%, #B8860B 100%);
    border-radius: 2px;
    animation: loadingBar 3s ease-out forwards;
    box-shadow: 0 0 20px rgba(201, 152, 56, 0.8);
}

@keyframes fadeInSplash {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes loadingBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes flashGold {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes pulseGold {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(201, 152, 56, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(201, 152, 56, 0.8));
    }
}

@keyframes floatParticle {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    20% {
        opacity: 1;
        transform: translateX(20px) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateX(-20px) scale(1);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

@keyframes finalFlash {
    0% {
        background: #000000;
    }
    50% {
        background: radial-gradient(circle at center, rgba(201, 152, 56, 0.3) 0%, #000000 70%);
    }
    100% {
        background: #000000;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000 !important;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: none;
}

.header.scrolled {
    background: #000000 !important;
}

/* Menu Âncora Fixo */
.anchor-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.anchor-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.anchor-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #000000;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.anchor-link:hover {
    background: rgba(201, 152, 56, 0.1);
    color: #C99838;
}

.anchor-link.active {
    background: #C99838;
    color: white;
}

.anchor-link i {
    font-size: 1rem;
}

.anchor-link span {
    white-space: nowrap;
}

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

.nav-logo {
    background: none !important;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
}

.nav-logo a {
    background: none !important;
    display: inline-block;
    line-height: 0;
}

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

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #C99838;
}

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

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #C99838, #B8860B);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 152, 56, 0.3);
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 152, 56, 0.15) 0%, rgba(184, 134, 11, 0.1) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    z-index: 3;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 152, 56, 0.05);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 4;
    background: rgba(201, 152, 56, 0.02);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 152, 56, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.highlight {
    background: linear-gradient(135deg, #C99838, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #C99838;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
    background: transparent;
    padding: 20px;
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(201, 152, 56, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    object-fit: cover;
    min-height: 300px;
    position: relative;
    z-index: 4;
}

.hero-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px rgba(201, 152, 56, 0.3), 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 40px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #9e9e9e;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #999;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Carrossel Infinito */
.carousel-container {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 2rem;
    width: max-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Indicadores do carrossel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-indicator.active {
    background: #C99838;
}

.carousel-indicator:hover {
    background: #B8860B;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 300px;
    min-width: 300px;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C99838, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.feature-card p {
    color: #999;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-list li {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    color: #C99838;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* App Showcase */
.app-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 152, 56, 0.2) 0%, rgba(184, 134, 11, 0.15) 100%), url('img/img2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.app-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 152, 56, 0.15);
    z-index: 1;
}

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

/* Carrossel Infinito das Imagens */
.app-screenshots-carousel {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
    width: 100%;
}

.app-screenshots-track {
    display: flex;
    animation: scrollScreenshots 25s linear infinite;
    gap: 2rem;
    width: max-content;
}

.app-screenshots-track:hover {
    animation-play-state: paused;
}

@keyframes scrollScreenshots {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.screenshot {
    text-align: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    flex: 0 0 300px;
    min-width: 300px;
}

.screenshot:hover {
    transform: translateY(-10px) scale(1.02);
}

.screenshot:hover .screen-img {
    box-shadow: 0 20px 40px rgba(201, 152, 56, 0.3);
}

.screen-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 0;
    object-fit: cover;
    min-height: 250px;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.screenshot h4 {
    display: none;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #C99838;
    transform: translateY(-5px);
}

.pricing-header h3 {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #C99838;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Security Section */
.security {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 152, 56, 0.15) 0%, rgba(184, 134, 11, 0.1) 100%), url('img/img4.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 152, 56, 0.05);
    z-index: 1;
}

.security .container {
    position: relative;
    z-index: 2;
}

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

.security-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C99838, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.security-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.security-feature p {
    color: #999;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #C99838;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1rem;
    color: #999;
}

.faq-answer ul {
    padding-left: 1.5rem;
    color: #999;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Open Account Section */
.open-account {
    padding: 80px 0;
    background: white;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C99838, #B8860B);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(201, 152, 56, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C99838, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.step-card p {
    color: #999;
    font-size: 0.95rem;
}

.open-account-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #C99838, #B8860B);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    background: none !important;
}

.footer-logo .logo {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #C99838;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .anchor-menu {
        top: 70px;
    }
    
    .anchor-menu-container {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .anchor-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .anchor-link span {
        display: none;
    }
    
    .anchor-link i {
        font-size: 1.2rem;
    }
    
    .splash-logo {
        max-width: 200px;
    }
    
    .splash-loader {
        width: 150px;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-bg-slide {
        background-attachment: scroll;
    }
    
    .security {
        background-attachment: scroll;
        background-size: cover;
        background: linear-gradient(135deg, rgba(201, 152, 56, 0.15) 0%, rgba(184, 134, 11, 0.1) 100%), url('img/img4.png');
    }
    
    .hero-img {
        max-width: 100%;
        height: auto;
        min-height: 250px;
    }
    
    .app-showcase {
        background-attachment: scroll;
        background-size: cover;
        background: linear-gradient(135deg, rgba(201, 152, 56, 0.18) 0%, rgba(184, 134, 11, 0.12) 100%), url('img/img2.png');
    }
    
    .hero {
        padding: 170px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions .btn-large {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat {
        text-align: center;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-track {
        animation-duration: 20s;
    }
    
    .feature-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .app-screenshots {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .app-screenshots-track {
        animation-duration: 20s;
    }
    
    .screenshot {
        flex: 0 0 250px;
        min-width: 250px;
    }
    
    .screen-img {
        min-height: 200px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 22px 18px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions .btn-large {
        padding: 0.95rem 1.75rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 160px 0 40px;
        min-height: auto;
        overflow: visible;
    }
    
    .hero-container {
        padding: 0 10px;
        max-width: 100%;
        overflow: visible;
    }
    
    .hero-content {
        padding: 20px 15px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-actions {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-actions .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-stats {
        gap: 1.2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .stat {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.3rem;
        word-wrap: break-word;
    }
    
    .stat-label {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .open-account-actions {
        flex-direction: column;
    }
    
    .app-screenshots {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 150px 0 30px;
    }
    
    .hero-container {
        padding: 0 5px;
    }
    
    .hero-content {
        padding: 15px 10px;
        margin: 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-actions .btn-large {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Animações - Removidas para evitar problemas com imagens */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de flutuação para a imagem hero */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Aplicar animação apenas a elementos que não contêm imagens */
.feature-card,
.pricing-card,
.security-feature {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Imagens com fallback - Garantir que sempre fiquem visíveis */
img {
    display: block !important;
    max-width: 100%;
    height: auto;
    background: transparent !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
}

img[src=""], img:not([src]) {
    background: linear-gradient(135deg, #C99838, #B8860B);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}

img[src=""]:before, img:not([src]):before {
    content: "Imagem não encontrada";
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Estilos específicos para logos */
.logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
}

/* Estilos para imagens de screenshot */
.screen-img {
    transition: all 0.3s ease;
}

.screen-img:hover {
    transform: scale(1.05);
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #C99838;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(201, 152, 56, 0.3);
}

.back-to-top:hover {
    background: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 152, 56, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
