.portada {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.portada-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.8);
}

/* Línea debajo de la imagen */
.linea {
    display: block;
    width: 100%;
    padding-top: 10px;
}

/* Texto encima con fondo difuminado */
.portada-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

/* Fondo con blur */
.portada-texto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 105%;
    height: 105%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(6px);
    border-radius: 25px;
    transform: translate(-2%, -2%);
    z-index: -1;
}

/* Título */
.portada-titulo {
    font-size: 60px;
    font-weight: 900;
    font-family: var(--fuente-amaranth);
}