body {
    margin: 0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: #f1f5f9;
    color: #0f172a;
}

/* HEADER */
header {
    text-align: center;
    padding: 20px;
    background: white;
    border-bottom: 2px dashed #0ea5e9;
}

/* BANNER */
.banner {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #e0f2fe;
}

#rain {
    position: absolute;
    width: 100%;
    height: 100%;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.banner h2 {
    font-size: 28px;
}

/* PRODUTOS */
.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background: white;
    border: 2px dashed #0ea5e9;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: rotate(-1deg) scale(1.02);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

/* BOTÃO */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background: #0ea5e9;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

.btn:hover {
    background: #0284c7;
}

/* INFO */
.info {
    text-align: center;
    padding: 20px;
}

/* REDES */
.redes {
    text-align: center;
    padding: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social {
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

.tiktok {
    background: black;
}

.instagram {
    background: #f43f5e;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
}

/* MOBILE */
@media (max-width: 600px) {

    .banner {
        height: 250px;
    }

    .banner h2 {
        font-size: 22px;
    }

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 18px;
    }

    .btn {
        font-size: 16px;
        padding: 12px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social {
        width: 80%;
        justify-content: center;
    }
}