.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
}

.tutorial-card {
    background: #111;
    border: 1.5px solid #dc2626;
    border-radius: 14px;
    padding: 2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.18s, box-shadow 0.18s;
    min-height: 170px;
    height: 170px;
    max-width: 220px;
    width: 100%;
    justify-content: center;
}

.tutorial-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 18px rgba(220,38,38,0.13);
    border-color: #b91c1c;
    cursor: pointer;
}

.tutorial-icon {
    background: #dc2626;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.tutorial-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsividade extra para grid */
@media (max-width: 900px) {
    .tutorials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .tutorial-card {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        min-height: 140px;
        height: 140px;
        max-width: 150px;
    }
    .tutorial-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .tutorial-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    .tutorial-card {
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        min-height: 100px;
        height: 100px;
        max-width: 120px;
    }
    .tutorial-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    .tutorial-card h3 {
        font-size: 0.92rem;
    }
}

.tutorials-header-content {
    width: 100%;
    text-align: center;
    z-index: 2;
    color: #2d0909;
    text-shadow: 2px 2px 8px #fff, 0 2px 12px #000;
    padding: 0 1rem;
}

.tutorials-header-content h1 {
    font-family: "Cinzel Decorative", serif;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.tutorials-header-content p {
    font-family: "Cinzel Decorative", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d0909;
    text-shadow: 1px 1px 6px #fff, 0 1px 8px #000;
}

@media (max-width: 600px) {
    .tutorials-header-bg {
        min-height: 80px;
        max-height: 120px;
        height: 22vw;
    }
    .tutorials-header-content h1 {
        font-size: 1.5rem;
    }
    .tutorials-header-content p {
        font-size: 0.92rem;
    }
}