/* Container Global */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4AF37; /* Dourado */
    --primary-light: #FFD700; /* Dourado mais claro */
    --primary-dark: #B8860B; /* Dourado mais escuro */
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --dark-bg: #0A0A0A; /* Preto mais profundo */
    --card-bg: #141414; /* Cinza muito escuro */
    --text-light: #FFFFFF;
    --text-gray: #999999;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #000000;
}

/* Header e Navegação */
.main-header {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.logo:hover .logo-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-gradient);
    color: #000 !important;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
    padding-top: 0;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 4rem;
    text-align: left;
    position: relative;
    z-index: 2;
    padding-top: 30px;
}

.hero h1 {
    font-size: 3.6875rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-light);
    position: relative;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.hero-image:hover img {
    transform: translateY(-10px);
}

.floating-chart {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.floating-chart i {
    font-size: 2.5rem;
    color: var(--dark-bg);
}

.floating-lines {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.05;
    bottom: 10%;
    right: -50px;
    z-index: 1;
    transform: rotate(45deg);
    filter: blur(20px);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

/* Responsividade da Hero Section */
@media (max-width: 1400px) {
    .hero {
        padding: 0 4rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding-right: 2rem;
    }

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

    .floating-chart {
        width: 100px;
        height: 100px;
    }

    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding: 6rem 2rem;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-image {
        height: auto;
        justify-content: center;
        padding-left: 0;
    }

    .floating-chart, .floating-lines {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 60px;
    }
    
    .hero .container {
        flex-direction: column;
        padding-top: 80px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        order: 2;
    }

    .hero-image {
        height: auto;
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 2rem;
        width: 100%;
        order: 1;
        max-height: 40vh;
        display: flex;
        justify-content: center;
    }
    
    .hero-image img {
        max-height: 40vh;
        object-fit: contain;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
        padding: 0 0.5rem;
    }

    .logo img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0 1rem;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 6rem 2rem 4rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        gap: 0;
    }
    
    .close-menu {
        position: absolute;
        top: 25px;
        right: 25px;
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        margin-bottom: 3rem;
        width: 100%;
        margin-top: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        background-color: rgba(20, 20, 20, 0.5);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.3rem;
        display: block;
        padding: 1.2rem 0;
        font-weight: 500;
        transition: all 0.3s ease;
        background-color: transparent;
    }

    .nav-links a:hover, .nav-links a.active {
        background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        color: var(--primary-color);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active::before {
        content: '•';
        color: var(--primary-color);
        position: absolute;
        left: 30px;
    }

    .mobile-cta {
        margin-top: 1.5rem;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Animação do botão hamburger */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Ajustes para outras seções no mobile */
    .hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        height: auto;
        padding-left: 0;
        margin-top: 0;
    }

    .hero-button {
        margin-bottom: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .market-info {
        bottom: 30px;
        font-size: 0.85rem;
    }
    
    .market-info p {
        padding: 0 1rem;
    }

    .partner-card {
        min-height: 280px;
        padding: 1rem;
    }
    
    .partner-image {
        height: 100px;
        margin: 0.3rem 0;
    }
    
    .partner-card h3 {
        margin: 0.3rem 0;
        font-size: 1.1rem;
    }
    
    .partner-card p {
        margin-bottom: 0.8rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .market-info {
        bottom: 20px;
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .mobile-break {
        display: inline;
    }

    .about-us {
        padding: 2.5rem 0;
    }
    
    .about-us h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        gap: 1rem;
    }
    
    .about-image {
        margin-bottom: 0.5rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
}

/* Partners Section */
.partners {
    background-color: #0A0A0A;
    padding: 6rem 0 calc(3rem + 30px) 0;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0A0A0A 0%, #141414 100%);
    opacity: 0.97;
    z-index: 1;
}

.partners .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.partners h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

.partners h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
}

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

.partner-card {
    background-color: #0A0A0A;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.partner-image {
    width: 100%;
    height: 150px;
    margin: 1rem 0;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A0A0A;
}

.partner-image img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.partner-card h3 {
    color: var(--primary-color) !important;
    font-size: 1.25rem;
    margin: 0.75rem 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.partner-card p {
    color: #CCCCCC;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-card .cta-button {
    margin-top: auto;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    align-self: center;
    background: transparent;
    border: none;
    color: var(--text-gray) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.partner-card .cta-button::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.partner-card .cta-button:hover {
    background: transparent;
    color: #999;
    transform: none;
    box-shadow: none;
}

.partner-card .cta-button:hover::after {
    transform: translateX(5px);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
    display: inline-flex;
}

@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 3rem 1rem calc(3rem + 30px) 1rem;
    }

    .partners h2 {
        font-size: 1.5rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 20px;
    }

    .partner-card {
        min-height: 280px;
        padding: 1rem;
    }
}

/* Footer */
footer {
    background-color: rgba(26, 26, 26, 0.9);
    color: var(--text-gray);
    text-align: center;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.footer-column {
    display: flex;
    align-items: center;
}

.footer-column:first-child {
    justify-content: flex-start;
}

.footer-column:last-child {
    justify-content: flex-end;
}

.footer-column:nth-child(2) {
    justify-content: center;
}

.footer-logo img {
    height: 60px;
}

.footer-social a {
    color: var(--text-gray);
    font-size: 1.3rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

footer p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer p {
        font-size: 0.8rem;
    }
    
    .footer-social a {
        font-size: 1.2rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
}

/* Success Banner */
.success-banner {
    background: var(--primary-gradient);
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
}

.success-banner .container {
    position: relative;
}

.success-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(255,255,255,0.1) 100%);
}

.success-title {
    text-align: center;
    margin-bottom: 2rem;
}

.success-title p {
    font-size: 1.5rem;
    color: var(--dark-bg);
    font-weight: bold;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.slide {
    flex: 0 0 auto;
    padding: 0 2rem;
}

.slide img {
    height: 40px;
    filter: brightness(0.15);
    transition: filter 0.3s ease;
}

.slide:hover img {
    filter: brightness(0);
}

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

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

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 4rem;
}

.testimonials-slider {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 1rem;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 600px;
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.company-logo {
    height: 30px;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
}

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

.slider-arrow {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary-gradient);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #555;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: var(--primary-gradient);
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .main-header {
        padding: 1rem;
    }

    .logo img {
        height: 45px;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .testimonial-cards {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .success-title p {
        font-size: 1.2rem;
    }

    .slide {
        padding: 0 1rem;
    }

    .slide img {
        height: 30px;
    }
}

/* Word Rotation Animation */
.word-rotation {
    display: inline-block;
    position: relative;
}

.word-rotation .word {
    display: none;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.word-rotation .word.visible {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
}

.word-rotation::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 100%;
    bottom: -8px;
    left: 0;
    background: var(--primary-gradient);
    transform-origin: left;
    transform: scaleX(0);
    animation: lineGrow 5s ease-in-out infinite;
}

@keyframes lineGrow {
    0% {
        transform: scaleX(0);
    }
    90% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
    margin-top: 0;
    transform: none;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0A0A0A 0%, #141414 100%);
    opacity: 0.97;
    z-index: 1;
}

.about-us .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-top: 0;
}

.about-us h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0;
}

.about-us h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image {
    flex: 1;
    position: relative;
    order: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translateY(-10px);
}

.about-text {
    flex: 1;
    padding-right: 0;
    padding-left: 2rem;
    order: 2;
}

.about-text p {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.about-text .cta-button {
    margin-top: 2rem;
    display: inline-block;
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-text {
        order: 2;
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 30px 0 3rem 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .about-us h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about-us h2::after {
        bottom: -10px;
        width: 80px;
        height: 3px;
    }

    .about-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .about-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .about-image img {
        max-width: 100%;
        border-radius: 15px;
        max-height: 30vh;
        object-fit: cover;
    }
    
    .about-text .cta-button {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #FFFFFF;
    animation: bounce 2s infinite;
    z-index: 100;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.market-info {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--text-gray);
    text-align: center;
    font-weight: 500;
    z-index: 100;
}

.market-info p {
    white-space: nowrap;
    color: var(--text-gray);
    z-index: 100;
}

.join-team {
    background-color: #0A0A0A;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.join-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0A0A0A 0%, #141414 100%);
    opacity: 0.97;
    z-index: 1;
}

.join-team .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.join-text h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

.join-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
}

.join-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.join-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.join-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    display: block;
}

.join-image:hover img {
    transform: translateY(-10px);
}

.join-text {
    flex: 1;
    padding-right: 2rem;
}

.join-text p {
    color: #CCCCCC;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

.join-text .cta-button {
    margin-top: 2rem;
    display: inline-block;
}

@media (max-width: 992px) {
    .join-content {
        flex-direction: column;
        gap: 3rem;
    }

    .join-image {
        order: -1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .join-image img {
        max-width: 400px;
    }

    .join-text {
        padding-right: 0;
        text-align: center;
    }

    .join-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .join-team {
        padding: 4rem 0;
    }

    .join-text h2 {
        font-size: 1.5rem;
    }

    .join-content {
        padding: 0 1rem;
        gap: 2rem;
    }

    .join-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .join-image {
        width: 90%;
        margin: 0 auto;
    }

    .join-image img {
        max-width: 100%;
        border-radius: 15px;
        max-height: 40vh;
        object-fit: cover;
    }
}

.hero .cta-button {
    color: #000;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Ajuste conforme necessário */
}

body, .nav-links a, .logo-text, .partners h2, .about-us h2, .join-text h2, .partner-card h3, .market-info, .scroll-indicator, .partner-card p, .about-text p, .join-text p {
    color: #FFFFFF;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none;
}

.close-menu::before,
.close-menu::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    top: 50%;
    left: 0;
    transition: all 0.3s ease;
}

.close-menu::before {
    transform: translateY(-50%) rotate(45deg);
}

.close-menu::after {
    transform: translateY(-50%) rotate(-45deg);
}

.close-menu:hover::before,
.close-menu:hover::after {
    background-color: var(--primary-light);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Estilo quando o menu está aberto */
body.menu-open {
    overflow: hidden;
}

/* Overlay para o menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1.5rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 6rem 2rem 4rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        gap: 0;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        margin-bottom: 3rem;
        width: 100%;
        margin-top: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        background-color: rgba(20, 20, 20, 0.5);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.3rem;
        display: block;
        padding: 1.2rem 0;
        font-weight: 500;
        transition: all 0.3s ease;
        background-color: transparent;
    }

    .nav-links a:hover, .nav-links a.active {
        background: linear-gradient(to right, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
        color: var(--primary-color);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active::before {
        content: '•';
        color: var(--primary-color);
        position: absolute;
        left: 30px;
    }

    .mobile-cta {
        margin-top: 1.5rem;
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    /* Animação do botão hamburger */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Ajustes para outras seções no mobile */
    .hero .container {
        flex-direction: column;
    }
    
    .hero-image {
        height: auto;
        padding-left: 0;
        margin-top: 0;
    }

    .hero-button {
        margin-bottom: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* Mobile Social Icons */
.mobile-social {
    display: none;
    margin-top: 1.5rem;
}

.mobile-social a {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .mobile-social {
        display: flex;
        justify-content: center;
    }
}

/* Ajuste para telas maiores */
@media (min-width: 769px) {
    .hero-content {
        padding-top: 0;
    }
    
    .hero .container {
        padding-top: 60px;
    }
}

.hero-button {
    margin-bottom: 1.5rem;
}

.mobile-break {
    display: none;
}

@media (max-width: 480px) {
    .mobile-break {
        display: inline;
    }
} 