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

body {
    font-family: Arial, sans-serif;
    color: #ffe600;
    background-color: #3d018b;
    line-height: 1.6;
}

/* HEADER */
.main-header {
    background-color: #3d018b;
    color: #ffe600;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-nav a {
    color: #ffe600;
    font-weight: bold;
}

.main-nav a:hover {
    text-decoration: underline;
}

.mobile-menu-icon {
    font-size: 32px;
    background: none;
    border: none;
    color: #ffe600;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {

    .mobile-menu-icon {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: #2a005d;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    .main-nav.active {
        max-height: 260px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 20px;
    }
}

.hero-section {
    background: url('../assets/img/friv-jogos.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.hero-title {
    font-size: 2.4rem;
    color: #000000;
    font-weight: bold;
}

.hero-logo {
    height: 80px;
    margin-left: 10px;
}

.hero-subtitle {
    margin: 10px 0 20px;
    font-size: 1.2rem;
}

.hero-button {
    background-color: #ffe600;
    color: rgb(0, 0, 0);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
}

.hero-button:hover {
    background-color: #706500;
}

.gallery-section {
    padding: 60px 20px;
    background: #5900ff;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #ffe600;
    margin-bottom: 25px;
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.gallery-item {
    text-align: center;
    font-weight: bold;
}

.gallery-item img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 6px;
}

.main-footer {
    background: #000;
    padding: 15px;
    text-align: center;
    color: white;
    margin-top: 30px;
}

.blur-box {
    background: rgba(255, 255, 255, 0.164);
    padding: 20px 30px;
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}