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

body {
    font-family: 'Inter', system-ui, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
}

.navbar {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(1.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-content {
    max-width: 50%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.contact-btn {
    background: rgb(246, 104, 64);
    color: rgb(255, 255, 255);
    border: none;
    padding: 15px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: none;
}

.contact-btn:hover {
    background: rgb(226, 94, 54);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.container {
    max-width: 1140px;
    width: 50%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    background: rgb(248, 249, 250);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.hero-title-main {
    font-size: 60px;
    font-weight: 800;
    color: rgb(246, 104, 64);
    text-shadow: 0 2px 4px rgba(246, 104, 64, 0.2);
    display: block;
    margin-bottom: 0px;
}

.hero-title-secondary {
    font-size: 48px;
    font-weight: 700;
    color: rgb(51, 51, 51);
    display: block;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 22px;
    color: rgb(102, 102, 102);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #ff6b35;
}

.cta-btn {
    background: rgb(246, 104, 64);
    color: rgb(255, 255, 255);
    border: none;
    padding: 20px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(246, 104, 64, 0.3);
    margin-top: 20px;
}

.cta-btn:hover {
    background: rgb(226, 94, 54);
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

.trading-platform {
    margin: 40px 0;
}

.platform-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    animation: float 6s ease-in-out infinite;
}

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


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    background: rgb(255, 255, 255);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: rgba(246, 104, 64, 0.08) 0px 4px 25px 0px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, rgb(246, 104, 64), rgb(255, 149, 0));
    border-radius: 20px 20px 0 0;
}

.stat-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: rgba(246, 104, 64, 0.25) 0px 15px 50px 0px !important;
}

.stat-card:hover::before {
    height: 8px !important;
    background: linear-gradient(135deg, rgb(246, 104, 64), rgb(255, 149, 0), rgb(246, 104, 64)) !important;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: rgb(246, 104, 64);
    margin-bottom: 10px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: rgb(51, 51, 51);
    margin-bottom: 15px;
}

.stat-description {
    color: rgb(102, 102, 102);
    line-height: 1.6;
    font-size: 14px;
}

.excellence-section {
    background: rgb(248, 249, 250);
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: rgb(51, 51, 51);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: rgb(102, 102, 102);
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: rgb(246, 104, 64);
    font-weight: 600;
}

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

.feature-card {
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid transparent;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgb(246, 104, 64);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgb(246, 104, 64);
    border-radius: 10px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(246, 104, 64);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: rgb(246, 104, 64);
    margin: 0;
}

.feature-description {
    color: rgb(102, 102, 102);
    line-height: 1.6;
    font-size: 14px;
}

.technology-section {
    background: rgb(255, 255, 255);
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.tech-content {
    text-align: left;
}

.tech-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-feature-card {
    background: rgb(255, 255, 255);
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(246, 104, 64, 0.08) 0px 4px 20px 0px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tech-feature-card:hover {
    transform: translateY(-3px);
    border: 1px solid rgb(246, 104, 64);
    box-shadow: rgba(246, 104, 64, 0.12) 0px 6px 25px 0px;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    margin: 0;
}

.tech-feature-icon {
    width: 40px;
    height: 40px;
    background: rgb(246, 104, 64);
    border-radius: 8px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.tech-feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tech-feature-content p {
    color: #666;
    line-height: 1.5;
}

.tech-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-laptop-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 15px;
}

.success-section {
    background: rgb(255, 255, 255);
    color: rgb(51, 51, 51);
    padding: 80px 0;
    text-align: center;
}

.success-section .section-title {
    color: rgb(51, 51, 51);
    margin-bottom: 50px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 50px;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.case-card {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: rgba(246, 104, 64, 0.08) 0px 4px 25px 0px;
    max-width: 420px;
    width: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(246, 104, 64, 0.15) 0px 8px 35px 0px;
}

.case-video {
    width: 100%;
    height: 500px;
    position: relative;
    aspect-ratio: 9/16;
    max-height: 500px;
}

.case-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.case-content {
    padding: 20px;
}

.case-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(51, 51, 51);
}

.case-author {
    color: rgb(102, 102, 102);
    font-size: 14px;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6b35;
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }

    .navbar-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-title-main {
        font-size: 36px;
    }

    .hero-title-secondary {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .cta-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .platform-image {
        max-width: 100%;
        height: 350px;
    }

    .tech-laptop-img {
        max-width: 100%;
    }

    .stat-card {
        margin: 0 auto;
        max-width: 350px;
        width: 100%;
    }

    .feature-card {
        margin: 0 auto;
        max-width: 350px;
        width: 100%;
    }

    .tech-feature-card {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .case-card {
        margin: 0 auto;
        max-width: 95%;
    }

    .section-title {
        font-size: 28px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tech-features {
        gap: 15px;
    }

    .tech-feature-card {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        justify-items: center;
    }

    .case-card {
        max-width: 100%;
    }

    .case-video {
        height: 500px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .logo-img {
        height: 30px;
    }

    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

/* Animações e efeitos adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title, .hero-subtitle {
    animation: fadeInUp 0.8s ease-out;
}

.stat-card {
    animation: fadeInUp 0.8s ease-out;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(n+4) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(n+7) {
    animation-delay: 0.2s;
}

/* Efeitos de brilho nos botões */
.cta-btn, .contact-btn {
    position: relative;
    overflow: hidden;
}

.cta-btn::before, .contact-btn::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;
}

.cta-btn:hover::before, .contact-btn:hover::before {
    left: 100%;
}

/* Navbar glass effect variations */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(40px) saturate(1.4);
    -webkit-backdrop-filter: blur(40px) saturate(1.4);
    border-bottom: 1px solid rgba(246, 104, 64, 0.2);
    box-shadow: 
        0 8px 32px rgba(246, 104, 64, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

/* Loading state */
.tech-laptop-img {
    transition: opacity 0.3s ease;
}

.tech-laptop-img:hover {
    opacity: 0.9;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Platform image não precisa de hover para manter animação float */
.platform-image:hover {
    filter: brightness(1.05);
    transition: filter 0.3s ease;
}
}