/* Ajustes gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1f1f47, #3c1361);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(34, 34, 52, 0.8), rgba(58, 13, 89, 0.9));
    padding: 0px;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 2rem;
    font-weight: 700;
    color: #f3e5f5;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.nav-links li {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: #f3e5f5;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e1bee7;
}

.cta-btn {
    background-color: #7e57c2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-left: auto;
}

.cta-btn:hover {
    background-color: #bb86fc;
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, rgba(34, 34, 52, 0.8), rgba(58, 13, 89, 0.9));
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slideshow-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    height: 100%;
    width: 100%;
    position: absolute;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 3;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Features Section */
.features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 60px 20px;
    background: #292938;
}

.feature {
    max-width: 300px;
    text-align: center;
    margin: 20px;
    background: #1e1e2f;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    width: 80px;
    margin-bottom: 20px;
}

.feature h3 {
    color: #bb86fc;
    margin-bottom: 15px;
}

.feature p {
    color: #cfcfcf;
}

/* Sobre e Download Sections */
.about-section,
.download-section {
    padding: 60px 20px;
    text-align: center;
    color: #e0e0e0;
}

.about-section {
    background: #1e1e2f;
}

.download-section {
    background: linear-gradient(135deg, rgba(34, 34, 52, 0.8), rgba(58, 13, 89, 0.9));
}

/* Footer */
.footer {
    background: #121212;
    color: #e0e0e0;
    text-align: center;
    padding: 20px 0;
}

/* Estilo global do .menu-toggle */
.menu-toggle {
    display: none; /* Escondido por padrão para a versão desktop */
}

/* Estilo global para navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: auto;
}

.nav-links li {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: #f3e5f5;
    font-weight: 500;
    transition: color 0.3s;
}

.cta-btn {
    background-color: #7e57c2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-left: 20px;
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between; /* Logo e botão do menu em lados opostos */
        align-items: center;
        width: 100%;
    }

    .nav-links {
        display: none; /* Esconde os links inicialmente */
        flex-direction: column;
        width: 100%;
        background: rgba(34, 34, 52, 0.9);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .nav-links.show {
        display: flex; /* Exibe os links quando a classe 'show' é aplicada */
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block; /* Exibe o botão de menu no mobile */
        font-size: 2rem;
        cursor: pointer;
        color: #fff;
        background: none;
        border: none;
        padding: 10px;
    }

    /* Esconder o botão "Download Agora" na versão mobile */
    .navbar .cta-btn {
        display: none;
    }
}





