* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6fb;
    color: #333;
    line-height: 1.6;
}

/* MENU */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: linear-gradient(90deg, #5e3bee, #7a5cff);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

/* HERO */
.hero {
    padding-top: 90px;
    text-align: center;
    background: linear-gradient(135deg, #5e3bee, #7a5cff);
    color: white;
    padding-bottom: 40px;
}

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

.hero p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.hero button {
    margin-top: 20px;
    padding: 12px 20px;
    border: none;
    background: white;
    color: #5e3bee;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* SEÇÕES */
section {
    padding: 50px 20px;
}

h2 {
    color: #5e3bee;
    margin-bottom: 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARDS */
.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

/* LISTAS */
ul {
    padding-left: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #5e3bee;
    color: white;
    margin-top: 40px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

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

    nav {
        flex-wrap: wrap;
    }
}

/* MENU BASE */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: linear-gradient(90deg, #5e3bee, #7a5cff);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* BOTÃO HAMBURGUER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #5e3bee;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .menu a {
        margin: 10px 0;
    }

    .menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}