/* Sección de Pasillos */
.aisles-section {
    background-color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.section-title {
    color: #0CA007;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
}

.aisles-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.aisle {
    position: relative;
    width: 200px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.aisle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aisle-number {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0075A2;
    color: white;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50%;
}

