.carta_titulo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    height: 20%;
}

.carta_logo {
    position: absolute;
    top: 10px;
    left: 10px;
}

.carta_logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.carta_titles {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


.carta_titulo .t1 {
    font-family: 'Oswald', sans-serif;
    color: #e10600;
    font-size: 1rem;
    font-weight: 600;
}


.carta_titulo .t2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.carta_imagen {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 300px;
    justify-content: space-between;
    overflow: hidden;
    padding: 10px;
    position: relative;
    width: 100%;
    background-color: #fff;
}

/* status badge */
.carta_imagen .estado {
    position: absolute;
    bottom: 8px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 30px;
    font-size: 0.9rem;
    z-index: 2;
}

.carta_fondo {
    filter: blur(8px) brightness(0.7);
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.carta_foto {
    left: 50%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.carta_final {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}


.carta_oferta {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
    align-items: flex-end;
    background-color: red;
    bottom: 0;
    display: flex;
    height: 25%;
    justify-content: center;
    flex-direction: column;
    padding: 10px 15px 10px 10px;
    position: absolute;
    right: 0;
    width: 85%;
    z-index: 10;
}

.btn_oferta_link {
    position: absolute;
    bottom: 12px;
    left: 15px;
    z-index: 20;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn_oferta_link:hover {
    background: #fff;
    color: #e10600;
}

.carta_oferta p {
    color: white;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carta_oferta s {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-align: right;
    margin-top: 2px;
}