.cartelContendo {
    position: relative;
    display: block;
    height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

/* Gradient overlay to ensure text readability */
.cartelContendo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.cartelImagen {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.8);
}

.cartelTexto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 900px;
    z-index: 2;
}

/* Entry Animation */
.cartelTexto>* {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.titulo1 {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    color: #e10600;
    font-size: 5rem;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1.1;
    animation-delay: 0.2s;
}

.titulo2 {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 3.5rem;
    letter-spacing: 2px;
    margin-top: 10px;
    color: #fff;
    line-height: 1.1;
    animation-delay: 0.4s;
}

.cartelInfo1 {
    font-family: 'Montserrat', Arial, sans-serif;
    margin-top: 40px;
    font-size: 1.5rem;
    color: #d0d0d0;
    animation-delay: 0.6s;
}

.cartelInfo2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
    color: #e4a101;
    /* Gold color from the theme */
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ===================== */
/*    MOBILE OPTIMIZATION */
/* ===================== */

@media (max-width: 1200px) {
    .titulo1 {
        font-size: 4rem;
    }

    .titulo2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .cartelContendo {
        height: 500px;
    }

    .titulo1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .titulo2 {
        font-size: 2.2rem;
        letter-spacing: 1.2px;
    }

    .cartelInfo1 {
        font-size: 1.2rem;
        margin-top: 25px;
    }

    .cartelInfo2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cartelContendo {
        height: 400px;
    }

    .titulo1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .titulo2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .cartelInfo1 {
        font-size: 1rem;
        margin-top: 20px;
    }

    .cartelInfo2 {
        font-size: 1.2rem;
    }
}