body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #ff3c00;
    position: relative;
}

.header a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
    gap: 30px;
}

.hero img {
    width: 400px;
    max-width: 100%;
    border-radius: 20px;
}

.hero-text h2 {
    font-size: 40px;
    color: #ffcc00;
}

button {
    background: #ff3c00;
    border: none;
    padding: 15px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
}

.menu {
    text-align: center;
    padding: 50px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #222;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s;
    width: 250px;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 100%;
}

.about, .contact {
    padding: 50px;
    text-align: center;
}

input, textarea {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 300px;
    max-width: 90%;
    border-radius: 10px;
    border: none;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
}

/* ================= RESPONSIVIDADE ================= */

/* Tablets */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 32px;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #ff3c00;
        padding: 15px;
        border-radius: 10px;
    }

    nav.active {
        display: flex;
    }

    .hero {
        padding: 30px 20px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Celulares pequenos */
@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 24px;
    }

    button {
        width: 100%;
    }
}
