/* Base Styles */
:root {
    --primary-color: #FFD700;
    /* Amarelo da logo */
    --primary-color-dark: #E6C200;
    /* Amarelo mais escuro */
    --secondary-color: #FF6B6B;
    /* Rosa/vermelho */
    --accent-color-1: #4E54C8;
    /* Azul */
    --accent-color-2: #00C2A8;
    /* Verde turquesa */
    --accent-color-3: #FF9D00;
    /* Laranja */
    --accent-color-4: #9C27B0;
    /* Roxo */
    --accent-color-5: #2196F3;
    /* Azul claro */
    --text-color: #333333;
    --text-light: #777777;
    --background-color: #000000;
    /* Fundo preto */
    --background-alt: #1a1a1a;
    /* Fundo preto alternativo */
    --border-color: #333333;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    /* Texto branco */
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: #000000;
    /* Texto branco */
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Botões com gradiente */
.btn-gradient {
    background-image: linear-gradient(to right,
            var(--primary-color) 0%,
            var(--accent-color-3) 51%,
            var(--primary-color) 100%);
    background-size: 200% auto;
    transition: 0.5s;
    color: black;
    font-weight: bold;
    z-index: 999!important;
}

.btn-gradient:hover {
    background-position: right center;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-gradient {
    background-color: transparent;
    position: relative;
    z-index: 1;
    color: white;
    border: none;
    transition: all 0.4s ease;
}

.btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    background: linear-gradient(to right,
            var(--primary-color),
            var(--accent-color-1),
            var(--accent-color-2),
            var(--accent-color-3),
            var(--accent-color-4),
            var(--primary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    background-size: 300% 100%;
    animation: gradient-border 8s linear infinite;
    z-index: -1;
}

.btn-outline-gradient:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.98);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 150px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ffffff;
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    /* background: #000000; */
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.05;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right,
            rgba(78, 84, 200, 0.2) 0%,
            rgba(0, 0, 0, 0) 50%), radial-gradient(circle at bottom left,
            rgba(255, 157, 0, 0.2) 0%,
            rgba(0, 0, 0, 0) 50%);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.wave-divider {
    position: absolute;
    /* bottom: 0;
    left: 0;
    width: 100%; */
    overflow: hidden;
    /* line-height: 0; */
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--background-color);
}

.stats .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    background-color: var(--background-alt);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    color: #ffffff;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--background-alt);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #000000;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    color: #ffffff;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(78, 84, 200, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
}

.step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step p {
    color: #cccccc;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--background-color);
}

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

.benefit-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--background-alt);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    color: #ffffff;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #cccccc;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Platforms Section */
.platforms {
    padding: 100px 0;
    background-color: var(--background-alt);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.platform-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--background-alt);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    color: #ffffff;
}

.platform-card:hover {
    transform: translateY(-10px);
}

.platform-card:nth-child(6n+1) {
    border-top: 3px solid var(--primary-color);
}

.platform-card:nth-child(6n+2) {
    border-top: 3px solid var(--accent-color-1);
}

.platform-card:nth-child(6n+3) {
    border-top: 3px solid var(--accent-color-2);
}

.platform-card:nth-child(6n+4) {
    border-top: 3px solid var(--accent-color-3);
}

.platform-card:nth-child(6n+5) {
    border-top: 3px solid var(--accent-color-4);
}

.platform-card:nth-child(6n+6) {
    border-top: 3px solid var(--accent-color-5);
}

.platform-card:nth-child(6n+1) .platform-icon i {
    color: var(--primary-color);
}

.platform-card:nth-child(6n+2) .platform-icon i {
    color: var(--accent-color-1);
}

.platform-card:nth-child(6n+3) .platform-icon i {
    color: var(--accent-color-2);
}

.platform-card:nth-child(6n+4) .platform-icon i {
    color: var(--accent-color-3);
}

.platform-card:nth-child(6n+5) .platform-icon i {
    color: var(--accent-color-4);
}

.platform-card:nth-child(6n+6) .platform-icon i {
    color: var(--accent-color-5);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.platform-icon i {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.platform-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.platform-card p {
    color: #cccccc;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    background-color: var(--background-alt);
    cursor: pointer;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: var(--transition);
}

.video-placeholder:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--background-color);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--background-alt);
    box-shadow: var(--box-shadow);
    margin: 20px;
    color: #ffffff;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -20px;
    top: -20px;
    color: rgba(78, 84, 200, 0.1);
    font-family: Georgia, serif;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-btn,
.next-btn {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--primary-color-dark);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--background-alt);
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: #000000;
}

.faq-question {
    padding: 20px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: #ffffff;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: #cccccc;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(78, 84, 200, 0.2) 0%,
            rgba(0, 194, 168, 0.2) 25%,
            rgba(255, 157, 0, 0.2) 50%,
            rgba(156, 39, 176, 0.2) 75%,
            rgba(33, 150, 243, 0.2) 100%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* Footer */
footer {
    background-color: #2a2a2a;
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after,
.footer-contact h3:after,
.footer-social h3:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(78, 84, 200, 0.4);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-5px);
}

/* Floating CTA (Mobile) */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .cta-buttons {
        justify-content: center;
    }

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

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

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        padding: 80px 20px 20px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0 0 20px 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1002;
    }

    .mobile-menu-btn.active i:before {
        content: '\f00d';
    }

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

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

    .floating-cta {
        display: block;
    }

    .back-to-top {
        bottom: 80px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }

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

    .hero h2 {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .stat-item {
        min-width: 100%;
    }

    .footer-content>div {
        min-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 10px;
    }
}