body {
    background-color: #E1C4F1;
}

section {
    display: flex;
    flex-direction: row;
    margin:2rem;
    margin-top: 5%;
}

h2 {
    padding: 0;
    font-size: 8rem;
    margin-left: 2rem;
    line-height: 7rem;
}

p {
    font-size: 2.2rem;
    padding:0;
    margin:0;
    margin-left:2rem;
}

#mueble img {
    height: 90vh;
    align-items: center;
}

/* Hotspots animados */
.hotspot {
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: #DD3792;
animation: pulse 1.5s infinite;
cursor: pointer;
border: 1px solid white;
z-index: 10;
}

@keyframes pulse {
0% {
    transform: scale(1);
    opacity: 1;
}
70% {
    transform: scale(1.5);
    opacity: 0.5;
}
100% {
    opacity: 0;
}
}

/* Contenedor relativo para posicionamiento */
#mueble {
position: relative;
}

/* Popup básico */
.popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #FFE8F7;
padding: 1rem;
border-radius: 10px;
z-index: 100;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
display: none;
}

.popup img {
max-width: 50%;
height: 50%;
}

.popup h3 {
margin-top: 1rem;
font-size: 1.8rem;
}

.popup-close {
margin-top: 1rem;
cursor: pointer;
color: #DD3792;
font-size: 1.2rem;
}
@media (max-width: 768px){
    section {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20%;
    }

    h2{
        font-size:4rem;
        line-height: 3.5rem;
    }
    #mueble img {
        height: 70vh;
    }
}