.about-float {
    display: flex;
    align-items: stretch;
    gap: 40px;
    padding: 80px 8%;
    background-color: #fffffe;
}

.about-card {
    width: 35%;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.floating-area {
    width: 65%;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;

    /* efecto hundido */
    box-shadow:
        inset 0 4px 10px rgba(0, 0, 0, 0.08),
        inset 0 -4px 10px rgba(255, 255, 255, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.05);
}

.face {
    width: 70px;
    position: absolute;
    cursor: pointer;

    animation: shrimpDance 2s infinite ease-in-out;
}

@keyframes shrimpDance {
    0% {
        transform: scaleX(1) translateY(0);
    }
    25% {
        transform: scaleX(1) translateY(-4px);
    }
    50% {
        transform: scaleX(-1) translateY(0);
    }
    75% {
        transform: scaleX(-1) translateY(-4px);
    }
    100% {
        transform: scaleX(1) translateY(0);
    }
}

.week-card {
    position: relative;
    display: block;
    width: 100%;
    height: 260px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
}

/* Imagen base */
.week-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(1.5px);
    transition: all 0.4s ease;
}

/* Texto centrado */
.week-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

/* Hover */
.week-card:hover img {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
}

.week-card:hover .week-overlay {
    opacity: 1;
}

.week-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.week-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    opacity: 0.45;
    transition: all 0.4s ease;
}

.week-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
}

/* TEXTO PRINCIPAL */
.week-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

/* TEXTO SECUNDARIO */
.week-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    opacity: 0.75;
    letter-spacing: 1px;
}

/* HOVER */
.week-card:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

.week-card:hover .week-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.week-card:hover .week-subtitle {
    opacity: 1;
}
