.titulo-site {
    background: linear-gradient(135deg, #ff0000, #cc0000); /* vermelho YouTube */
    padding: 40px 0;
    text-align: center;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in-out;
}

.titulo-site h1 {
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1.5px;
}

.titulo-site p {
    color: #f0f0f0;
    font-size: 1.25rem;
    margin-top: 10px;
    font-weight: 400;
}

/* Animação sutil na entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
