.img2,
.img3,
.img4 {
    position: absolute;
    transform: translateX(-50%);
    height: 75%; 
    text-align: center;
    padding: 10px;
    border-radius: 12px;
}


.img2 {
    top: 50%;
    left: 50%; 
    width: 75%; 
    height: 75%;    
    align-content: space-between;
}

.img3,
.img4 {
    top: 25%; 
    left: 50%;             
    width: 80%; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btnUbicacion,
.btnRopa,
.btnConfirmation {
    background-color: transparent;
    text-decoration: none;
    text-transform: none;
    color: white;
    border-radius: 30px;
    border: 2px solid black;
    display: inline-block;
    margin-top: 5px;
    padding: 14px 1px;
    font-size: 14px;
}



.btnUbicacion span,
.btnRopa span,
.btnConfirmation span {
    background-color: #757f87;
    border-radius: 25px;
     padding: 10px;
     margin: 10px;
}

.btnUbicacion span:hover,
.btnRopa span:hover,
.btnConfirmation span:hover {
    background-color: #782744;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
    height: 28%;
}

.event-icon {
    display: flex;
    gap: 5px;
    min-width: 60px;
    justify-content: center;
    align-items: center;
}

.event-info {
    flex: 1;
}

.event-title {
    margin: 0;
    font-weight: bold;
}

.event-time {
    margin: 0;
    color: #555;
}

.event-links {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}


/* 📱 Mobile */
@media (max-width: 768px) {
    .event-item {
        flex-direction: row;
    }
    .event-icon img {
        width: 50px;
        height: 50px;
    }
}

/* 💻 PC */
@media (min-width: 769px) {
    .event-icon img {
        width: 80px;
        height: 80px;
    }
    .event-info p {
        font-size: 1.5rem;
    }
    .btnUbicacion,
    .btnRopa,
     .btnConfirmation {
        font-size: 1.5rem;
    }
}