/* Banner festivo */

.festive-message2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}
.festive-message {
    font-family: 'Cormorant Garamond', serif;
}


.festive-banner {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #7a0c0c, #b31212);
    color: #fff;
    transition: height 1s ease;
    
  z-index: 2147483647; /* máximo seguro */
  pointer-events: auto;    
}

/* Estado inicial */
.festive-banner.expanded {
    height: 300px;
}

/* Estado reducido */
.festive-banner.collapsed {
    height: 80px;
}

/* Contenido */
.festive-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
}

.festive-content h2 {
    margin: 0;
    font-size: 1.4rem;
}

.festive-content img {
    height: 350px;

    /* Desvanecido en bordes */
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 0) 100%
        );

    mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 0) 100%
        );
}

/* Mobile */
@media (max-width: 576px) {
    .festive-content h2 {
        font-size: 1.1rem;
    }

    .festive-content img {
        height: 100px;
    }

    .festive-banner.collapsed {
        height: 130px;
    }
}
