/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Albert Sans", sans-serif;
}

body {
    overflow-x: hidden;
}

/* Cabeçalho */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #1e2340;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 52px;
}

.nav-title {
    color: white;
    font-size: 28px;
    margin-left: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    font-weight: 500;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
}

.nav-links a.highlight {
    background-color: #2ecc71;
    border-radius: 4px;
}

/* Hero section */
.hero {
    background-color: #00b0f0;
    padding: 80px 40px;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 60px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.2;
}

/* App section */
.app-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 100px;
    background-color: white;
}

.app-image {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid #1e2340;
}

.app-content {
    max-width: 600px;
}

.app-content h2 {
    font-size: 48px;
    color: #1e2340;
    margin-bottom: 20px;
}

.app-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.google-play-button {
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: start;
    gap: 10px;
    background-color: #1e2340;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.google-play-button img {
    height: 30px;
}

/* Inovador section */
.inovador-section {
    background-color: #1e2340;
    padding: 60px 40px;
    text-align: center;
}

.inovador-section h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 30px;
}

.inovador-section p {
    color: white;
    font-size: 18px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Games section */
.games-section {
    background-color: #00b0f0;
    padding: 60px 40px;
    text-align: center;
}

.games-section h2 {
    color: white;
    font-size: 48px;
    margin-bottom: 60px;
}

.games-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    width: 240px;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    border: 2px solid #1e2340;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials section */
.testimonials-section {
    padding: 60px 40px;
    text-align: center;
    background-color: white;
}

.testimonials-section h2 {
    color: #1e2340;
    font-size: 48px;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #1e2340;
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    text-align: left;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #1e2340;
    padding: 20px;
    text-align: center;
    color: white;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }

    .app-section {
        padding: 40px;
        flex-direction: column;
        text-align: center;
    }

    .app-image {
        margin-bottom: 30px;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 20px;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .games-grid {
        gap: 20px;
    }

    .game-card {
        width: 200px;
        height: 200px;
    }
}